2015-08-31 22:57:52 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, docbook_xsl, gtk_doc, icu
|
2016-01-02 17:59:09 +00:00
|
|
|
, libxslt, pkgconfig, python }:
|
2015-05-07 15:05:51 +01:00
|
|
|
|
2015-08-06 18:47:00 +01:00
|
|
|
let
|
|
|
|
|
2016-02-08 19:48:23 +00:00
|
|
|
listVersion = "2016-02-06";
|
2015-08-31 22:57:52 +01:00
|
|
|
listSources = fetchFromGitHub {
|
2016-02-08 19:48:23 +00:00
|
|
|
sha256 = "0jh1fbfyi9zdhw77brfdkw7mcbr03dqww8yv703kp69fqhyf2pln";
|
|
|
|
rev = "0efc1a2f0ec93163273f6c5c2f511a19f5cd5805";
|
2015-08-31 22:57:52 +01:00
|
|
|
repo = "list";
|
|
|
|
owner = "publicsuffix";
|
2015-08-06 18:47:00 +01:00
|
|
|
};
|
|
|
|
|
2016-01-02 17:59:09 +00:00
|
|
|
libVersion = "0.12.0";
|
2015-08-06 18:47:00 +01:00
|
|
|
|
2016-01-25 19:08:34 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2015-05-07 15:05:51 +01:00
|
|
|
name = "libpsl-${version}";
|
2016-01-25 19:08:34 +00:00
|
|
|
version = "${libVersion}-list-${listVersion}";
|
2015-05-07 15:05:51 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2016-01-02 17:59:09 +00:00
|
|
|
sha256 = "13w3lc752az2swymg408f3w2lbqs0f2h5ri6d5jw1vv9z0ij9xlw";
|
2015-08-06 18:47:00 +01:00
|
|
|
rev = "libpsl-${libVersion}";
|
2015-05-07 15:05:51 +01:00
|
|
|
repo = "libpsl";
|
|
|
|
owner = "rockdaboot";
|
|
|
|
};
|
|
|
|
|
2015-08-06 18:47:00 +01:00
|
|
|
buildInputs = [ icu libxslt ];
|
2016-01-02 17:59:09 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook docbook_xsl gtk_doc pkgconfig python ];
|
2015-08-06 18:47:00 +01:00
|
|
|
|
2015-09-25 10:33:21 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/psl.c --replace bits/stat.h sys/stat.h
|
2016-01-02 17:59:09 +00:00
|
|
|
patchShebangs src/make_dafsa.py
|
2015-09-25 10:33:21 +01:00
|
|
|
'';
|
|
|
|
|
2015-08-06 18:47:00 +01:00
|
|
|
preAutoreconf = ''
|
2015-08-06 20:33:05 +01:00
|
|
|
mkdir m4
|
|
|
|
gtkdocize
|
2015-08-06 18:47:00 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# The libpsl check phase requires the list's test scripts (tests/) as well
|
2015-08-31 22:57:52 +01:00
|
|
|
cp -Rv "${listSources}"/* list
|
2015-08-06 18:47:00 +01:00
|
|
|
'';
|
2016-01-02 17:59:09 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-builtin"
|
|
|
|
"--disable-static"
|
|
|
|
"--enable-gtk-doc"
|
|
|
|
"--enable-man"
|
|
|
|
];
|
2015-08-06 18:47:00 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2015-05-07 15:05:51 +01:00
|
|
|
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 = http://rockdaboot.github.io/libpsl/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.mit;
|
2015-05-15 06:40:10 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-05-07 15:05:51 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
}
|