summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-07-30 18:48:39 +0200
committerGitHub <noreply@github.com>2022-07-30 18:48:39 +0200
commit4d47a0ef9003534c48f6275f3b31b2ca38720599 (patch)
treee63ac9858476b858aff53e54d7da481fb6e3f9e4
parentbaa3a6cd1291ab23f7d3f3f532a3cfa6d0fb0e1e (diff)
downloadnixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.tar
nixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.tar.gz
nixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.tar.bz2
nixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.tar.lz
nixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.tar.xz
nixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.tar.zst
nixpkgs-4d47a0ef9003534c48f6275f3b31b2ca38720599.zip
gpm: remove ncurses null override (#183810)
Co-authored-by: Sebastián Mancilla <238528+smancill@users.noreply.github.com>
-rw-r--r--pkgs/servers/gpm/default.nix2
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/gpm/default.nix b/pkgs/servers/gpm/default.nix
index 66c6607e647..76358404e97 100644
--- a/pkgs/servers/gpm/default.nix
+++ b/pkgs/servers/gpm/default.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
   configureFlags = [
     "--sysconfdir=/etc"
     "--localstatedir=/var"
-    (if ncurses == null then "--without-curses" else "--with-curses")
+    (if withNcurses then "--with-curses" else "--without-curses")
   ];
 
   enableParallelBuilding = true;
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 9cbf99add1d..0a664419047 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -23612,7 +23612,7 @@ with pkgs;
   };
 
   gpm = callPackage ../servers/gpm {
-    ncurses = null;  # Keep curses disabled for lack of value
+    withNcurses = false; # Keep curses disabled for lack of value
 
     # latest 6.8 mysteriously fails to parse '@headings single':
     #   https://lists.gnu.org/archive/html/bug-texinfo/2021-09/msg00011.html