summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/networking/browsers/lynx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix
index 4bd477043377..ac54180eb5a0 100644
--- a/pkgs/applications/networking/browsers/lynx/default.nix
+++ b/pkgs/applications/networking/browsers/lynx/default.nix
@@ -5,10 +5,10 @@
 assert sslSupport -> openssl != null;
 
 stdenv.mkDerivation {
-  name = "lynx-2.8.5";
+  name = "lynx-2.8.6";
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/lynx2.8.5.tar.bz2;
-    md5 = "d1e5134e5d175f913c16cb6768bc30eb";
+    url = http://lynx.isc.org/lynx2.8.6/lynx2.8.6.tar.bz2;
+    sha256 = "0kbnxg01w1hczii6yqkx05dcx6yfcpqadrsavjyq3h68birc366w";
   };
   configureFlags = (if sslSupport then "--with-ssl" else "");
   buildInputs = [ncurses (if sslSupport then openssl else null)];