{ stdenv, fetchFromGitHub, autoreconfHook, docbook_xsl, gtk_doc, icu , libxslt, pkgconfig, python }: let listVersion = "2016-06-30"; listSources = fetchFromGitHub { sha256 = "1fx7g36dcckckz860f0ady8lsg3m6a5c9pgb39a3dn28xfvd21jw"; rev = "aa87d27940595ed4a61e726c7dd06860d87fabb6"; repo = "list"; owner = "publicsuffix"; }; libVersion = "0.15.0"; in stdenv.mkDerivation rec { name = "libpsl-${version}"; version = "${libVersion}-list-${listVersion}"; src = fetchFromGitHub { sha256 = "1n8vg8pslpgin84ygb0s0nqfljml32l5bv5fyc8ysnpbdsj6gxkb"; rev = "libpsl-${libVersion}"; repo = "libpsl"; owner = "rockdaboot"; }; buildInputs = [ icu libxslt ]; nativeBuildInputs = [ autoreconfHook docbook_xsl gtk_doc pkgconfig python ]; postPatch = '' substituteInPlace src/psl.c --replace bits/stat.h sys/stat.h patchShebangs src/psl-make-dafsa ''; preAutoreconf = '' mkdir m4 gtkdocize ''; preConfigure = '' # The libpsl check phase requires the list's test scripts (tests/) as well cp -Rv "${listSources}"/* list ''; configureFlags = [ "--disable-builtin" "--disable-static" "--enable-gtk-doc" "--enable-man" ]; 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; platforms = with platforms; linux ++ darwin; maintainers = with maintainers; [ nckx ]; }; }