2015-05-07 16:05:51 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, icu, libxslt, pkgconfig }:
|
|
|
|
|
|
|
|
let version = "0.7.1"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libpsl-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
sha256 = "0hbsidbmwgpg0h48wh2pzsq59j8az7naz3s5q3yqn99yyjji2vgw";
|
|
|
|
rev = name;
|
|
|
|
repo = "libpsl";
|
|
|
|
owner = "rockdaboot";
|
|
|
|
};
|
|
|
|
|
|
|
|
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/;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.mit;
|
2015-05-15 07:40:10 +02:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-05-07 16:05:51 +02:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
2015-06-17 19:36:06 +02:00
|
|
|
buildInputs = [ icu libxslt ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2015-05-07 16:05:51 +02:00
|
|
|
|
|
|
|
configureFlags = "--disable-static --enable-man";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
}
|