nixpkgs/pkgs/applications/networking/browsers/lynx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.3 KiB
Nix
Raw Normal View History

2021-08-08 00:19:11 +00:00
{ lib
, stdenv
, buildPackages
, fetchurl
, pkg-config
, ncurses
, gzip
, sslSupport ? true
, openssl
, nukeReferences
, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "lynx";
2023-10-08 13:06:12 +00:00
version = "2.9.0dev.12";
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"
];
2023-10-08 13:06:12 +00:00
hash = "sha256-pkVbFZ0Ad22OwQUShcly3B8MVS0FcaDP8Coj7BRu6OU=";
};
2017-02-22 23:32:55 +00:00
2017-08-17 16:45:14 +00:00
enableParallelBuilding = true;
2017-08-17 16:45:07 +00:00
hardeningEnable = [ "pie" ];
2018-05-06 20:03:53 +00:00
configureFlags = [
"--enable-default-colors"
2018-05-06 20:03:53 +00:00
"--enable-widec"
"--enable-ipv6"
2021-01-15 05:42:41 +00:00
] ++ lib.optional sslSupport "--with-ssl";
2017-02-22 23:32:55 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ nukeReferences ]
++ lib.optional sslSupport pkg-config;
2021-08-08 00:19:11 +00:00
buildInputs = [ ncurses gzip ]
++ lib.optional sslSupport openssl;
# 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
'';
meta = with lib; {
description = "A text-mode web browser";
homepage = "https://lynx.invisible-island.net/";
2023-09-25 11:44:39 +00:00
mainProgram = "lynx";
2021-08-08 00:19:11 +00:00
maintainers = with maintainers; [ ];
2017-08-17 16:50:26 +00:00
license = licenses.gpl2Plus;
2017-02-22 23:32:55 +00:00
platforms = platforms.unix;
};
}