mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
rogue: Fix build after ncurses5 changes
Fixes build after commit 3d24ae9b44
:
https://hydra.nixos.org/build/69789236
Thanks to dtzWill for the pointer:
https://github.com/NixOS/nixpkgs/pull/34477#issuecomment-367359351
This commit is contained in:
parent
d16274da1d
commit
71b0de1019
@ -14,6 +14,9 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
|
# Fix build for recent ncurses versions
|
||||||
|
NIX_CFLAGS_COMPILE = [ "-DNCURSES_INTERNALS=1" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://rogue.rogueforge.net/rogue-5-4/;
|
homepage = http://rogue.rogueforge.net/rogue-5-4/;
|
||||||
description = "The final version of the original Rogue game developed for the UNIX operating system";
|
description = "The final version of the original Rogue game developed for the UNIX operating system";
|
||||||
|
Loading…
Reference in New Issue
Block a user