about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/networking/browsers/links/default.nix9
-rw-r--r--pkgs/system/all-packages-generic.nix4
2 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/links/default.nix b/pkgs/applications/networking/browsers/links/default.nix
new file mode 100644
index 000000000000..6bbd0fc800c1
--- /dev/null
+++ b/pkgs/applications/networking/browsers/links/default.nix
@@ -0,0 +1,9 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+  name = "links-1.00pre15";
+  src = fetchurl {
+    url = http://artax.karlin.mff.cuni.cz/~mikulas/links/download/links-1.00pre15.tar.gz;
+    md5 = "f64823b9a1ac2d79df578a991dfae8b8";
+  };
+}
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 887a1c098b5a..be07e2452afe 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -1698,6 +1698,10 @@ rec {
     inherit fetchurl stdenv ncurses openssl;
   };
 
+  links = (import ../applications/networking/browsers/links) {
+    inherit fetchurl stdenv;
+  };
+
   w3m = (import ../applications/networking/browsers/w3m) {
     inherit fetchurl stdenv ncurses openssl boehmgc gettext;
   };