summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/lynx/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-04 14:24:19 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-10-04 14:24:19 +0000
commitbdabd66a464f87e7f4ab4d2aea9ab36944cf4510 (patch)
treedb39976f8b0b811cc2e766ad4270858e53be7fe9 /pkgs/applications/networking/browsers/lynx/default.nix
parent5573610e012a4666117851e12c7e8eb4e5aa00c1 (diff)
downloadnixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.tar
nixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.tar.gz
nixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.tar.bz2
nixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.tar.lz
nixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.tar.xz
nixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.tar.zst
nixlib-bdabd66a464f87e7f4ab4d2aea9ab36944cf4510.zip
* Install ncurses header files in $out/include, not
  $out/include/ncurses.  This simplifies many builders.

svn path=/nixpkgs/trunk/; revision=4008
Diffstat (limited to 'pkgs/applications/networking/browsers/lynx/default.nix')
-rw-r--r--pkgs/applications/networking/browsers/lynx/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix
index d3af07682e3e..7e0d66fcf825 100644
--- a/pkgs/applications/networking/browsers/lynx/default.nix
+++ b/pkgs/applications/networking/browsers/lynx/default.nix
@@ -6,12 +6,10 @@ assert sslSupport -> openssl != null;
 
 stdenv.mkDerivation {
   name = "lynx-2.8.5";
-  builder = ./builder.sh;
   src = fetchurl {
     url = http://nix.cs.uu.nl/dist/tarballs/lynx2.8.5.tar.bz2;
     md5 = "d1e5134e5d175f913c16cb6768bc30eb";
   };
-  inherit ncurses;
   configureFlags = (if sslSupport then "--with-ssl" else "");
   buildInputs = [ncurses (if sslSupport then openssl else null)];
 }