angband: pin to ncurses5 to fix build

This commit is contained in:
Robin Gloster 2017-01-13 18:11:01 +01:00
parent 10b0a6d411
commit 34b6f1f18b
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882

View file

@ -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;
};
}