From 3912502cbb5d3c430192e13ff0defe849444dbd2 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sun, 17 Mar 2019 15:37:22 +0000 Subject: [PATCH] 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. --- pkgs/applications/networking/browsers/lynx/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix index cb44e79839b..d6b775107d0 100644 --- a/pkgs/applications/networking/browsers/lynx/default.nix +++ b/pkgs/applications/networking/browsers/lynx/default.nix @@ -23,6 +23,7 @@ stdenv.mkDerivation rec { hardeningEnable = [ "pie" ]; configureFlags = [ + "--enable-default-colors" "--enable-widec" "--enable-ipv6" ] ++ stdenv.lib.optional sslSupport "--with-ssl";