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

70 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, docbook_xsl, gtk_doc, icu
2016-01-02 17:59:09 +00:00
, libxslt, pkgconfig, python }:
2015-08-06 17:47:00 +00:00
let
2016-03-30 12:21:19 +00:00
listVersion = "2016-03-30";
listSources = fetchFromGitHub {
2016-03-30 12:21:19 +00:00
sha256 = "0433ck6ykcq6pc48mvgif9f785q0ndprk77jsk58gb5289b87yns";
rev = "6ec573d549e25fc89d930bb64939d947bae38f68";
repo = "list";
owner = "publicsuffix";
2015-08-06 17:47:00 +00:00
};
2016-03-05 22:51:24 +00:00
libVersion = "0.13.0";
2015-08-06 17:47:00 +00:00
in stdenv.mkDerivation rec {
name = "libpsl-${version}";
version = "${libVersion}-list-${listVersion}";
src = fetchFromGitHub {
2016-03-05 22:51:24 +00:00
sha256 = "12inl984r2qks51wyrzgll83y7k79q2lbhyc545dpk19qnfvp7gz";
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 ];
2016-01-02 17:59:09 +00:00
nativeBuildInputs = [ autoreconfHook docbook_xsl gtk_doc pkgconfig python ];
2015-08-06 17:47:00 +00:00
2015-09-25 09:33:21 +00: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 09:33:21 +00:00
'';
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
'';
2016-01-02 17:59:09 +00:00
configureFlags = [
"--disable-builtin"
"--disable-static"
"--enable-gtk-doc"
"--enable-man"
];
2015-08-06 17:47:00 +00:00
enableParallelBuilding = true;
doCheck = true;
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/;
license = licenses.mit;
2015-05-15 05:40:10 +00:00
platforms = with platforms; linux ++ darwin;
maintainers = with maintainers; [ nckx ];
};
}