about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-03-17 15:37:22 +0000
committerAlyssa Ross <hi@alyssa.is>2019-03-17 15:37:22 +0000
commit9b7e3c15392a628ca748f9452016e4a6b02fe98f (patch)
tree1fedad316d9276af2104e9d337e5243be1f15a59 /nixpkgs/pkgs/applications/networking
parente27f3b017acb4f7e571f34747742b858bde49833 (diff)
downloadnixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.tar
nixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.tar.gz
nixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.tar.bz2
nixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.tar.lz
nixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.tar.xz
nixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.tar.zst
nixlib-9b7e3c15392a628ca748f9452016e4a6b02fe98f.zip
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.
Diffstat (limited to 'nixpkgs/pkgs/applications/networking')
-rw-r--r--nixpkgs/pkgs/applications/networking/browsers/lynx/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/networking/browsers/lynx/default.nix b/nixpkgs/pkgs/applications/networking/browsers/lynx/default.nix
index cb44e79839b0..d6b775107d06 100644
--- a/nixpkgs/pkgs/applications/networking/browsers/lynx/default.nix
+++ b/nixpkgs/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";