libgumbo: init at 0.10.1

This commit is contained in:
= 2016-10-20 21:16:03 +02:00
parent d6880b210c
commit fefe011f82
No known key found for this signature in database
GPG Key ID: E5900B8AC02DE455
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
name = "libgumbo-${version}";
version = "0.10.1";
src = fetchFromGitHub {
owner = "google";
repo = "gumbo-parser";
rev = "v${version}";
sha256 = "0xslckwdh2i0g2qjsb6rnm8mjmbagvziz0hjlf7d1lbljfms1iw1";
};
buildInputs = [ autoconf automake libtool ];
preConfigure = "./autogen.sh";
meta = with stdenv.lib; {
description = "C99 HTML parsing algorithm";
homepage = https://github.com/google/gumbo-parser;
maintainers = [ maintainers.nico202 ];
platforms = platforms.linux;
license = licenses.asl20;
};
}

View File

@ -7776,6 +7776,8 @@ in
inherit (perlPackages) libintlperl GetoptLong SysVirt;
};
libgumbo = callPackage ../development/libraries/libgumbo { };
libhangul = callPackage ../development/libraries/libhangul { };
libharu = callPackage ../development/libraries/libharu { };