forked from mirrors/nixpkgs
angband: pin to ncurses5 to fix build
This commit is contained in:
parent
10b0a6d411
commit
34b6f1f18b
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses5 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "4.0.5";
|
||||
|
@ -12,13 +12,13 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ ncurses ];
|
||||
buildInputs = [ ncurses5 ];
|
||||
installFlags = "bindir=$(out)/bin";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://rephial.org/;
|
||||
description = "A single-player roguelike dungeon exploration game";
|
||||
maintainers = [ maintainers.chattered ];
|
||||
maintainers = [ maintainers.chattered ];
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue