nixpkgs/pkgs/development/libraries/libpsl/default.nix

62 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, docbook_xsl, gtk_doc, icu
, libxslt, pkgconfig }:
2015-08-06 17:47:00 +00:00
let
version = "${libVersion}-list-${listVersion}";
2015-09-16 02:59:34 +00:00
listVersion = "2015-09-15";
listSources = fetchFromGitHub {
2015-09-16 02:59:34 +00:00
sha256 = "1rrds3bsnxb2n2ifl0zg6mh1h8nd3h1ba4bz0dznrrlqzfbav0l2";
rev = "4f89204a24e99d8a65353cc62d5bc4dea1b2ae31";
repo = "list";
owner = "publicsuffix";
2015-08-06 17:47:00 +00:00
};
2015-09-19 22:17:19 +00:00
libVersion = "0.10.0";
2015-08-06 17:47:00 +00:00
in stdenv.mkDerivation {
name = "libpsl-${version}";
src = fetchFromGitHub {
2015-09-19 22:17:19 +00:00
sha256 = "0m6jz0cc49cp0zki1qb2b1z7z0djladayfhbxi0i20pad28czsbn";
2015-08-06 17:47:00 +00:00
rev = "libpsl-${libVersion}";
repo = "libpsl";
owner = "rockdaboot";
};
2015-08-06 17:47:00 +00:00
buildInputs = [ icu libxslt ];
nativeBuildInputs = [ autoreconfHook docbook_xsl gtk_doc pkgconfig ];
2015-08-06 17:47:00 +00:00
preAutoreconf = ''
mkdir m4
gtkdocize
2015-08-06 17:47:00 +00:00
'';
preConfigure = ''
# The libpsl check phase requires the list's test scripts (tests/) as well
cp -Rv "${listSources}"/* list
2015-08-06 17:47:00 +00:00
'';
configureFlags = "--disable-static --enable-gtk-doc --enable-man";
2015-08-06 17:47:00 +00:00
enableParallelBuilding = true;
doCheck = true;
meta = with stdenv.lib; {
inherit version;
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 = http://rockdaboot.github.io/libpsl/;
license = licenses.mit;
2015-05-15 05:40:10 +00:00
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ nckx ];
};
}