gpm: remove ncurses null override (#183810)
Co-authored-by: Sebastián Mancilla <238528+smancill@users.noreply.github.com>
This commit is contained in:
parent
baa3a6cd12
commit
4d47a0ef90
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user