angband: pin to ncurses5 to fix build

This commit is contained in:
Robin Gloster
2017-01-14 18:39:01 +01:00
parent 10b0a6d411
commit 34b6f1f18b
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }: { stdenv, fetchFromGitHub, autoreconfHook, ncurses5 }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "4.0.5"; version = "4.0.5";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ncurses ]; buildInputs = [ ncurses5 ];
installFlags = "bindir=$(out)/bin"; installFlags = "bindir=$(out)/bin";
meta = with stdenv.lib; { meta = with stdenv.lib; {