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

62 lines
1.8 KiB
Nix
Raw Normal View History

2015-08-06 17:47:00 +00:00
{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, icu, libxslt
, pkgconfig }:
2015-08-06 17:47:00 +00:00
let
version = "${libVersion}-list-${listVersion}";
listVersion = "2015-08-03";
listArchive = let
rev = "447962d71bf512fe41e828afc7fa66a1701c7c3c";
in fetchurl {
sha256 = "0gp0cb6p8yvyy5kvgdwg45ian9rb07bb0a9ibdj58g21l54mx3r2";
url = "https://codeload.github.com/publicsuffix/list/tar.gz/${rev}";
};
libVersion = "0.8.0";
in stdenv.mkDerivation {
name = "libpsl-${version}";
src = fetchFromGitHub {
2015-08-06 17:47:00 +00:00
sha256 = "0mjnj36igk6w3c0d4k2fqqg1kl6bpnxfrcgcgz1zdw33gfa5gdi7";
rev = "libpsl-${libVersion}";
repo = "libpsl";
owner = "rockdaboot";
};
2015-08-06 17:47:00 +00:00
buildInputs = [ icu libxslt ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
preAutoreconf = ''
echo "EXTRA_DIST =" > gtk-doc.make
echo "CLEANFILES =" >> gtk-doc.make
'';
preConfigure = ''
# The libpsl check phase requires the list's test scripts (tests/) as well
tar --directory=list --strip-components=1 -xf "${listArchive}"
'';
configureFlags = "--disable-static --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;
2015-05-15 05:40:10 +00:00
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ nckx ];
};
}