about summary refs log tree commit diff
path: root/pkgs/servers/gpm
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 /pkgs/servers/gpm
parentbaa3a6cd1291ab23f7d3f3f532a3cfa6d0fb0e1e (diff)
gpm: remove ncurses null override (#183810)
Co-authored-by: Sebastián Mancilla <238528+smancill@users.noreply.github.com>
Diffstat (limited to 'pkgs/servers/gpm')
-rw-r--r--pkgs/servers/gpm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/gpm/default.nix b/pkgs/servers/gpm/default.nix
index 66c6607e64721..76358404e970b 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;