summary refs log tree commit diff
path: root/pkgs/games/rogue
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2021-10-31 22:42:52 +0000
committerSergei Trofimovich <slyich@gmail.com>2021-12-16 07:55:06 +0000
commitd5abc055d2062efacba35a0232977463918ba22f (patch)
treebc85c62bbc446c6aa81f5ee923f4c9c030f5495b /pkgs/games/rogue
parent66246ca3561fbee0c3f28e8adcef8aa79a7d6399 (diff)
ncurses: 6.2 -> 6.3
The biggest nixpkgs-specific change is addition of printf()-style
attribute annotations for many ncurses APIs. -Werror=format-security
now flags parameter inconsistencies and fails the build.

The fixes are usually one-liners like adding "%s" format string for
non-literals or just using `hardeningDisable [ "format" ];` for software
where backporting or fixing is not practical.

Drop -DNCURSES_INTERNALS=1 workaround required only for ncurses-6.2
and build-incompatible with ncurses-6.3.
Diffstat (limited to 'pkgs/games/rogue')
-rw-r--r--pkgs/games/rogue/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/games/rogue/default.nix b/pkgs/games/rogue/default.nix
index 127d65ff362f6..4865b85bbe385 100644
--- a/pkgs/games/rogue/default.nix
+++ b/pkgs/games/rogue/default.nix
@@ -15,9 +15,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ ncurses ];
 
-  # Fix build for recent ncurses versions
-  NIX_CFLAGS_COMPILE = "-DNCURSES_INTERNALS=1";
-
   meta = with lib; {
     homepage = "http://rogue.rogueforge.net/rogue-5-4/";
     description = "The final version of the original Rogue game developed for the UNIX operating system";