Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPackages,
|
|
fetchurl,
|
|
pkg-config,
|
|
ncurses,
|
|
gzip,
|
|
sslSupport ? true,
|
|
openssl,
|
|
nukeReferences,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lynx";
|
|
version = "2.9.2";
|
|
|
|
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"
|
|
];
|
|
hash = "sha256-c3S4mTbZkWaeEB9Ol/LJWSA24ejNqnuvwlmnerb7B84=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningEnable = [ "pie" ];
|
|
|
|
configureFlags = [
|
|
"--enable-default-colors"
|
|
"--enable-widec"
|
|
"--enable-ipv6"
|
|
]
|
|
++ lib.optional sslSupport "--with-ssl";
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
nativeBuildInputs = [ nukeReferences ] ++ lib.optional sslSupport pkg-config;
|
|
|
|
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
|
|
'';
|
|
|
|
env = lib.optionalAttrs stdenv.cc.isGNU {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Text-mode web browser";
|
|
homepage = "https://lynx.invisible-island.net/";
|
|
mainProgram = "lynx";
|
|
maintainers = [ ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|