2017-06-05 00:15:31 +01:00
|
|
|
{ stdenv, buildPackages
|
|
|
|
, fetchurl, pkgconfig, ncurses, gzip
|
2004-07-26 11:33:58 +01:00
|
|
|
, sslSupport ? true, openssl ? null
|
2017-06-05 00:15:31 +01:00
|
|
|
, buildPlatform, hostPlatform
|
2017-08-17 17:37:28 +01:00
|
|
|
, nukeReferences
|
2004-07-26 11:33:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
|
2016-03-18 04:28:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lynx-${version}";
|
2017-02-22 23:32:55 +00:00
|
|
|
version = "2.8.9dev.11";
|
|
|
|
|
2004-07-26 11:33:58 +01:00
|
|
|
src = fetchurl {
|
2016-03-18 04:28:19 +00:00
|
|
|
url = "http://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2";
|
2017-02-22 23:32:55 +00:00
|
|
|
sha256 = "1cqm1i7d209brkrpzaqqf2x951ra3l67dw8x9yg10vz7rpr9441a";
|
2004-07-26 11:33:58 +01:00
|
|
|
};
|
2017-02-22 23:32:55 +00:00
|
|
|
|
2017-08-17 17:45:07 +01:00
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
|
2017-05-29 08:14:02 +01:00
|
|
|
configureFlags = [ "--enable-widec" ] ++ stdenv.lib.optional sslSupport "--with-ssl";
|
2017-02-22 23:32:55 +00:00
|
|
|
|
2017-06-05 00:15:31 +01:00
|
|
|
nativeBuildInputs = stdenv.lib.optional sslSupport pkgconfig
|
2017-08-17 17:37:28 +01:00
|
|
|
++ stdenv.lib.optional (hostPlatform != buildPlatform) buildPackages.stdenv.cc
|
|
|
|
++ [ nukeReferences ];
|
2017-06-05 00:15:31 +01:00
|
|
|
|
2017-05-29 08:14:02 +01:00
|
|
|
buildInputs = [ ncurses gzip ] ++ stdenv.lib.optional sslSupport openssl.dev;
|
2010-10-12 21:57:02 +01:00
|
|
|
|
2017-08-17 17:37:28 +01:00
|
|
|
# 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; {
|
2010-02-03 12:24:03 +00:00
|
|
|
homepage = http://lynx.isc.org/;
|
2006-10-12 11:53:16 +01:00
|
|
|
description = "A text-mode web browser";
|
2017-02-22 23:32:55 +00:00
|
|
|
platforms = platforms.unix;
|
2006-10-12 11:53:16 +01:00
|
|
|
};
|
2004-07-26 11:33:58 +01:00
|
|
|
}
|