gpm: remove ncurses null override (#183810)

Co-authored-by: Sebastián Mancilla <238528+smancill@users.noreply.github.com>
This commit is contained in:
Sandro 2022-07-30 18:48:39 +02:00 committed by GitHub
parent baa3a6cd12
commit 4d47a0ef90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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