summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnders Kaseorg <andersk@mit.edu>2022-12-07 02:40:19 -0800
committerAnders Kaseorg <andersk@mit.edu>2022-12-07 02:43:30 -0800
commit83668bc0df91724c879adc6b6ec15cc195f07ae7 (patch)
tree12f6ef21920537ad41b209b06ca679191b9214c8
parent6e51c97f1c849efdfd4f3b78a4870e6aa2da4198 (diff)
downloadnixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.tar
nixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.tar.gz
nixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.tar.bz2
nixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.tar.lz
nixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.tar.xz
nixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.tar.zst
nixpkgs-83668bc0df91724c879adc6b6ec15cc195f07ae7.zip
openafs: Fix incorrectly required and inverted withNcurses parameter
Introduced by commit
cc7deb7e4a1b34d539230abe33ace25e41953b53 (#187862).

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
-rw-r--r--pkgs/servers/openafs/1.8/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/openafs/1.8/default.nix b/pkgs/servers/openafs/1.8/default.nix
index fb6dcdeecde..d6e2f20ecdb 100644
--- a/pkgs/servers/openafs/1.8/default.nix
+++ b/pkgs/servers/openafs/1.8/default.nix
@@ -18,7 +18,7 @@
 , withDevdoc ? false
 , doxygen
 , dblatex # Extra developer documentation
-, withNcurses
+, withNcurses ? false
 , ncurses # Extra ncurses utilities. Needed for debugging and monitoring.
 , withTsm ? false
 , tsm-client # Tivoli Storage Manager Backup Client from IBM
@@ -45,7 +45,7 @@ stdenv.mkDerivation {
     bison
   ] ++ optionals withDevdoc [ doxygen dblatex ];
 
-  buildInputs = [ libkrb5 ncurses ];
+  buildInputs = [ libkrb5 ] ++ optional withNcurses ncurses;
 
   patches = [ ./bosserver.patch ./cross-build.patch ]
     ++ optional withTsm ./tsmbac.patch;
@@ -84,7 +84,7 @@ stdenv.mkDerivation {
       "--disable-fuse-client"
       "--with-docbook-stylesheets=${docbook_xsl}/share/xml/docbook-xsl"
       ${optionalString withTsm "--enable-tivoli-tsm"}
-      ${optionalString withNcurses "--disable-gtx"}
+      ${optionalString (!withNcurses) "--disable-gtx"}
       "--disable-linux-d_splice-alias-extra-iput"
     )
   '' + optionalString withTsm ''