summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-01-05 10:32:59 +0100
committerVladimír Čunát <v@cunat.cz>2022-01-05 10:32:59 +0100
commit2d3e6f73cbf451ed8389ba2b014cf0011a5fccab (patch)
tree28358dd9e30924e9b1c9ce6103671514260d7241
parent48d1133b0456885a73a922359198af5d8c431244 (diff)
parentd5abc055d2062efacba35a0232977463918ba22f (diff)
downloadnixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.tar
nixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.tar.gz
nixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.tar.bz2
nixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.tar.lz
nixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.tar.xz
nixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.tar.zst
nixpkgs-2d3e6f73cbf451ed8389ba2b014cf0011a5fccab.zip
Merge #146685: ncurses: 6.2 -> 6.3 (into staging)
-rw-r--r--pkgs/applications/audio/squishyball/default.nix2
-rw-r--r--pkgs/development/libraries/ncurses/default.nix4
-rw-r--r--pkgs/games/rogue/default.nix3
-rw-r--r--pkgs/tools/misc/wyrd/default.nix2
4 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/applications/audio/squishyball/default.nix b/pkgs/applications/audio/squishyball/default.nix
index b44efc1534f..4a7f819e290 100644
--- a/pkgs/applications/audio/squishyball/default.nix
+++ b/pkgs/applications/audio/squishyball/default.nix
@@ -16,8 +16,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ flac libao libvorbis ncurses opusfile ];
 
-  NIX_CFLAGS_COMPILE = "-DNCURSES_INTERNALS";
-
   patches = [ ./gnu-screen.patch ];
 
   postInstall = ''
diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix
index b7ca4df8885..6aa93e87da9 100644
--- a/pkgs/development/libraries/ncurses/default.nix
+++ b/pkgs/development/libraries/ncurses/default.nix
@@ -14,7 +14,7 @@
 
 stdenv.mkDerivation rec {
   # Note the revision needs to be adjusted.
-  version = "6.2";
+  version = "6.3";
   name = "ncurses-${version}" + lib.optionalString (abiVersion == "5") "-abi5-compat";
 
   # We cannot use fetchFromGitHub (which calls fetchzip)
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     rev = "v${version}";
   in fetchurl {
     url = "https://github.com/mirror/ncurses/archive/${rev}.tar.gz";
-    sha256 = "15r2456g0mlq2q7gh2z52vl6zv6y0z8sdchrs80kg4idqd8sm8fd";
+    sha256 = "1mawdjhzl2na2j0dylwc37f5w95rhgyvlwnfhww5rz2r7fgkvayv";
   };
 
   outputs = [ "out" "dev" "man" ];
diff --git a/pkgs/games/rogue/default.nix b/pkgs/games/rogue/default.nix
index 127d65ff362..4865b85bbe3 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";
diff --git a/pkgs/tools/misc/wyrd/default.nix b/pkgs/tools/misc/wyrd/default.nix
index 491c362eed4..d1244cc73c4 100644
--- a/pkgs/tools/misc/wyrd/default.nix
+++ b/pkgs/tools/misc/wyrd/default.nix
@@ -9,8 +9,6 @@ stdenv.mkDerivation rec {
     sha256 = "0zlrg602q781q8dij62lwdprpfliyy9j1rqfqcz8p2wgndpivddj";
   };
 
-  NIX_CFLAGS_COMPILE = "-DNCURSES_INTERNALS=1";
-
   preConfigure = ''
     substituteInPlace curses/curses.ml --replace 'pp gcc' "pp $CC"
   '';