3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/browsers/lynx/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, buildPackages
, fetchurl, pkgconfig, ncurses, gzip
, sslSupport ? true, openssl ? null
, buildPlatform, hostPlatform
, nukeReferences
}:
assert sslSupport -> openssl != null;
stdenv.mkDerivation rec {
name = "lynx-${version}";
2017-02-22 23:32:55 +00:00
version = "2.8.9dev.11";
src = fetchurl {
url = "http://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2";
2017-02-22 23:32:55 +00:00
sha256 = "1cqm1i7d209brkrpzaqqf2x951ra3l67dw8x9yg10vz7rpr9441a";
};
2017-02-22 23:32:55 +00:00
2017-08-17 17:45:07 +01:00
hardeningEnable = [ "pie" ];
configureFlags = [ "--enable-widec" ] ++ stdenv.lib.optional sslSupport "--with-ssl";
2017-02-22 23:32:55 +00:00
nativeBuildInputs = stdenv.lib.optional sslSupport pkgconfig
++ stdenv.lib.optional (hostPlatform != buildPlatform) buildPackages.stdenv.cc
++ [ nukeReferences ];
buildInputs = [ ncurses gzip ] ++ stdenv.lib.optional sslSupport openssl.dev;
# cfg_defs.h captures lots of references to build-only dependencies, derived
# from config.cache.
postConfigure = ''
make cfg_defs.h
nuke-refs cfg_defs.h
'';
2017-02-22 23:32:55 +00:00
meta = with stdenv.lib; {
homepage = http://lynx.isc.org/;
description = "A text-mode web browser";
2017-02-22 23:32:55 +00:00
platforms = platforms.unix;
};
}