about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJohannes Frankenau <johannes@frankenau.net>2018-05-06 22:03:53 +0200
committerJohannes Frankenau <johannes@frankenau.net>2018-05-06 22:03:53 +0200
commitc642fce38277c4ebd53067fce348e50f498d0972 (patch)
treebb5965141b42894dd0bb68c293df0d06a59a149d /pkgs/applications/networking
parent7342fd0eefa28c6eb33e6f3f342ecd4d91ac9233 (diff)
downloadnixlib-c642fce38277c4ebd53067fce348e50f498d0972.tar
nixlib-c642fce38277c4ebd53067fce348e50f498d0972.tar.gz
nixlib-c642fce38277c4ebd53067fce348e50f498d0972.tar.bz2
nixlib-c642fce38277c4ebd53067fce348e50f498d0972.tar.lz
nixlib-c642fce38277c4ebd53067fce348e50f498d0972.tar.xz
nixlib-c642fce38277c4ebd53067fce348e50f498d0972.tar.zst
nixlib-c642fce38277c4ebd53067fce348e50f498d0972.zip
lynx: enable IPv6 support
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/browsers/lynx/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix
index 9cad2838a39b..2a6abfb945b8 100644
--- a/pkgs/applications/networking/browsers/lynx/default.nix
+++ b/pkgs/applications/networking/browsers/lynx/default.nix
@@ -23,7 +23,10 @@ stdenv.mkDerivation rec {
 
   hardeningEnable = [ "pie" ];
 
-  configureFlags = [ "--enable-widec" ] ++ stdenv.lib.optional sslSupport "--with-ssl";
+  configureFlags = [
+    "--enable-widec"
+    "--enable-ipv6"
+  ] ++ stdenv.lib.optional sslSupport "--with-ssl";
 
   depsBuildBuild = [ buildPackages.stdenv.cc ];
   nativeBuildInputs = [ nukeReferences ]