Commit 83668bc0 authored by Anders Kaseorg's avatar Anders Kaseorg
Browse files

openafs: Fix incorrectly required and inverted withNcurses parameter



Introduced by commit
cc7deb7e (#187862).

Signed-off-by: default avatarAnders Kaseorg <andersk@mit.edu>
parent 6e51c97f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ''