lynx: enable default-colors

Building with this option allows Lynx to optionally use the default
colors of the terminal, when compiled with ncurses or slang. It does not
(as far as I know) change any default behavior.

Since we build with ncurses, I don't think there's any reason not to
have this.
This commit is contained in:
Alyssa Ross 2019-03-17 15:37:22 +00:00
parent 36cbb7c45e
commit 3912502cbb
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
hardeningEnable = [ "pie" ];
configureFlags = [
"--enable-default-colors"
"--enable-widec"
"--enable-ipv6"
] ++ stdenv.lib.optional sslSupport "--with-ssl";