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

26 lines
644 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
2016-10-20 20:16:03 +01:00
stdenv.mkDerivation rec {
pname = "gumbo";
2016-10-20 20:16:03 +01:00
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 lib; {
2016-10-20 20:16:03 +01:00
description = "C99 HTML parsing algorithm";
homepage = "https://github.com/google/gumbo-parser";
2016-10-20 20:16:03 +01:00
maintainers = [ maintainers.nico202 ];
2020-11-17 20:02:04 +00:00
platforms = with platforms; linux ++ darwin;
2016-10-20 20:16:03 +01:00
license = licenses.asl20;
};
}