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

51 lines
1.3 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}";
2018-05-06 21:04:09 +01:00
version = "2.8.9dev.17";
2017-02-22 23:32:55 +00:00
src = fetchurl {
urls = [
"ftp://ftp.invisible-island.net/lynx/tarballs/lynx${version}.tar.bz2"
"https://invisible-mirror.net/archives/lynx/tarballs/lynx${version}.tar.bz2"
];
2018-05-06 21:04:09 +01:00
sha256 = "1lvfsnrw5mmwrmn1m76q9mx287xwm3h5lg8sv7bcqilc0ywi2f54";
};
2017-02-22 23:32:55 +00:00
2017-08-17 17:45:14 +01:00
enableParallelBuilding = true;
2017-08-17 17:45:07 +01:00
hardeningEnable = [ "pie" ];
2018-05-06 21:03:53 +01:00
configureFlags = [
"--enable-widec"
"--enable-ipv6"
] ++ stdenv.lib.optional sslSupport "--with-ssl";
2017-02-22 23:32:55 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ nukeReferences ]
++ stdenv.lib.optional sslSupport pkgconfig;
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; {
description = "A text-mode web browser";
2018-05-06 21:04:09 +01:00
homepage = https://lynx.invisible-island.net/;
2017-08-17 17:50:26 +01:00
license = licenses.gpl2Plus;
2017-02-22 23:32:55 +00:00
platforms = platforms.unix;
};
}