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

66 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, docbook_xsl, gtk_doc, icu
, libxslt, pkgconfig }:
2015-08-06 17:47:00 +00:00
let
version = "${libVersion}-list-${listVersion}";
2015-12-17 04:43:21 +00:00
listVersion = "2015-12-17";
listSources = fetchFromGitHub {
2015-12-17 04:43:21 +00:00
sha256 = "09scxqlw7cp7vkjn7bp7dr9nqb3wg84kvw3iyapyxddfri4k0rvl";
rev = "9636089f5f22b0af98b1a48fb9179dc875f0872d";
repo = "list";
owner = "publicsuffix";
2015-08-06 17:47:00 +00:00
};
2015-09-23 22:48:25 +00:00
libVersion = "0.11.0";
2015-08-06 17:47:00 +00:00
in stdenv.mkDerivation {
name = "libpsl-${version}";
src = fetchFromGitHub {
2015-09-23 22:48:25 +00:00
sha256 = "08k7prrr83lg6jmm5r5k4alpm2in4qlnx49ypb4bxv16lq8dcnmm";
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 ];
nativeBuildInputs = [ autoreconfHook docbook_xsl gtk_doc pkgconfig ];
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
'';
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
'';
configureFlags = [ "--disable-static" "--enable-gtk-doc" "--enable-man" ];
2015-08-06 17:47:00 +00:00
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 ];
};
}