tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
angband: pin to ncurses5 to fix build
Robin Gloster
9 years ago
34b6f1f1
10b0a6d4
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
angband
default.nix
+3
-3
pkgs/games/angband/default.nix
reviewed
···
1
1
-
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
1
1
+
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses5 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
version = "4.0.5";
···
12
12
};
13
13
14
14
nativeBuildInputs = [ autoreconfHook ];
15
15
-
buildInputs = [ ncurses ];
15
15
+
buildInputs = [ ncurses5 ];
16
16
installFlags = "bindir=$(out)/bin";
17
17
18
18
meta = with stdenv.lib; {
19
19
homepage = http://rephial.org/;
20
20
description = "A single-player roguelike dungeon exploration game";
21
21
-
maintainers = [ maintainers.chattered ];
21
21
+
maintainers = [ maintainers.chattered ];
22
22
license = licenses.gpl2;
23
23
};
24
24
}