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 13:04:09 -07:00
version = "2.8.9dev.17";
2017-02-22 15:32:55 -08: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 13:04:09 -07:00
sha256 = "1lvfsnrw5mmwrmn1m76q9mx287xwm3h5lg8sv7bcqilc0ywi2f54";
};
2017-02-22 15:32:55 -08:00
2017-08-17 09:45:14 -07:00
enableParallelBuilding = true;
2017-08-17 09:45:07 -07:00
hardeningEnable = [ "pie" ];
2018-05-06 13:03:53 -07:00
configureFlags = [
"--enable-widec"
"--enable-ipv6"
] ++ stdenv.lib.optional sslSupport "--with-ssl";
2017-02-22 15:32:55 -08: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 15:32:55 -08:00
meta = with stdenv.lib; {
description = "A text-mode web browser";
2018-05-06 13:04:09 -07:00
homepage = https://lynx.invisible-island.net/;
2017-08-17 09:50:26 -07:00
license = licenses.gpl2Plus;
2017-02-22 15:32:55 -08:00
platforms = platforms.unix;
};
}