nixpkgs/pkgs/development/libraries/libpsl/default.nix
Tobias Geerinckx-Rice 0635ec3b5c libpsl: 0.8.0 -> 0.9.0
2015-09-16 05:01:18 +02:00

62 lines
1.7 KiB
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, docbook_xsl, gtk_doc, icu
, libxslt, pkgconfig }:
let
version = "${libVersion}-list-${listVersion}";
listVersion = "2015-09-07";
listSources = fetchFromGitHub {
sha256 = "0inpdixg967ibi5f41jq15l6r027lj2y5q0ymlfrp9b29gfay50n";
rev = "ee621394b6d863dcc2ff89956d91cdd7d15d8c9d";
repo = "list";
owner = "publicsuffix";
};
libVersion = "0.9.0";
in stdenv.mkDerivation {
name = "libpsl-${version}";
src = fetchFromGitHub {
sha256 = "01vmlmm75jdpfmd546z1yib92nmdqdlqv19ax379p3ys6kgap1sw";
rev = "libpsl-${libVersion}";
repo = "libpsl";
owner = "rockdaboot";
};
buildInputs = [ icu libxslt ];
nativeBuildInputs = [ autoreconfHook docbook_xsl gtk_doc pkgconfig ];
preAutoreconf = ''
mkdir m4
gtkdocize
'';
preConfigure = ''
# The libpsl check phase requires the list's test scripts (tests/) as well
cp -Rv "${listSources}"/* list
'';
configureFlags = "--disable-static --enable-gtk-doc --enable-man";
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;
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ nckx ];
};
}