forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
62 lines
1.9 KiB
Nix
62 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, xlibsWrapper, bzip2, zlib
|
|
, brotli, zstd, lzma, openssl, autoreconfHook, gettext, pkg-config, libev
|
|
, gpm, libidn, tre, expat
|
|
, # Incompatible licenses, LGPLv3 - GPLv2
|
|
enableGuile ? false, guile ? null
|
|
, enablePython ? false, python ? null
|
|
, enablePerl ? (stdenv.hostPlatform == stdenv.buildPlatform), perl ? null
|
|
# re-add javascript support when upstream supports modern spidermonkey
|
|
}:
|
|
|
|
assert enableGuile -> guile != null;
|
|
assert enablePython -> python != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elinks";
|
|
version = "0.13.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rkd77";
|
|
repo = "felinks";
|
|
rev = "v${version}";
|
|
sha256 = "067l9m47j40039q8mvvnxd1amwrac3x6vv0c0svimfpvj4ammgkg";
|
|
};
|
|
|
|
buildInputs = [
|
|
ncurses xlibsWrapper bzip2 zlib brotli zstd lzma
|
|
openssl libidn tre expat libev
|
|
]
|
|
++ lib.optional stdenv.isLinux gpm
|
|
++ lib.optional enableGuile guile
|
|
++ lib.optional enablePython python
|
|
++ lib.optional enablePerl perl
|
|
;
|
|
|
|
nativeBuildInputs = [ autoreconfHook gettext pkg-config ];
|
|
|
|
configureFlags = [
|
|
"--enable-finger"
|
|
"--enable-html-highlight"
|
|
"--enable-gopher"
|
|
"--enable-cgi"
|
|
"--enable-bittorrent"
|
|
"--enable-nntp"
|
|
"--enable-256-colors"
|
|
"--enable-true-color"
|
|
"--with-lzma"
|
|
"--with-libev"
|
|
"--with-terminfo"
|
|
] ++ lib.optional enableGuile "--with-guile"
|
|
++ lib.optional enablePython "--with-python"
|
|
++ lib.optional enablePerl "--with-perl"
|
|
;
|
|
|
|
meta = with lib; {
|
|
description = "Full-featured text-mode web browser (package based on the fork felinks)";
|
|
homepage = "https://github.com/rkd77/felinks";
|
|
license = licenses.gpl2;
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = with maintainers; [ iblech gebner ];
|
|
};
|
|
}
|