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.
87 lines
2.1 KiB
Nix
87 lines
2.1 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, docbook_xsl
|
|
, docbook_xml_dtd_43
|
|
, gtk-doc
|
|
, lzip
|
|
, libidn2
|
|
, libunistring
|
|
, libxslt
|
|
, pkg-config
|
|
, python3
|
|
, valgrind
|
|
, publicsuffix-list
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libpsl";
|
|
version = "0.21.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/rockdaboot/${pname}/releases/download/${pname}-${version}/${pname}-${version}.tar.lz";
|
|
sha256 = "183hadbira0d2zvv8272lspy31dgm9x26z35c61s5axcd5wd9g9i";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
docbook_xsl
|
|
docbook_xml_dtd_43
|
|
gtk-doc
|
|
lzip
|
|
pkg-config
|
|
python3
|
|
libxslt
|
|
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [
|
|
valgrind
|
|
];
|
|
|
|
buildInputs = [
|
|
libidn2
|
|
libunistring
|
|
libxslt
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
publicsuffix-list
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs src/psl-make-dafsa
|
|
'';
|
|
|
|
preAutoreconf = ''
|
|
gtkdocize
|
|
'';
|
|
|
|
configureFlags = [
|
|
# "--enable-gtk-doc"
|
|
"--enable-man"
|
|
"--with-psl-distfile=${publicsuffix-list}/share/publicsuffix/public_suffix_list.dat"
|
|
"--with-psl-file=${publicsuffix-list}/share/publicsuffix/public_suffix_list.dat"
|
|
"--with-psl-testfile=${publicsuffix-list}/share/publicsuffix/test_psl.txt"
|
|
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [
|
|
"--enable-valgrind-tests"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "C library for the Publix Suffix List";
|
|
longDescription = ''
|
|
libpsl is a C library for the Publix Suffix List (PSL). A "public suffix"
|
|
is a domain name under which Internet users can directly register own
|
|
names. Browsers and other web clients can use it to avoid privacy-leaking
|
|
"supercookies" and "super domain" certificates, for highlighting parts of
|
|
the domain in a user interface or sorting domain lists by site.
|
|
'';
|
|
homepage = "https://rockdaboot.github.io/libpsl/";
|
|
changelog = "https://raw.githubusercontent.com/rockdaboot/${pname}/${pname}-${version}/NEWS";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.c0bw3b ];
|
|
};
|
|
}
|