Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / gumbo / default.nix
blobb8cfef1f3247ec61a83fac67c6c21f1d1f993eda
1 { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
3 stdenv.mkDerivation rec {
4   pname = "gumbo";
5   version = "0.10.1";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "gumbo-parser";
10     rev = "v${version}";
11     sha256 = "0xslckwdh2i0g2qjsb6rnm8mjmbagvziz0hjlf7d1lbljfms1iw1";
12   };
14   strictDeps = true;
15   nativeBuildInputs = [ autoconf automake libtool ];
17   preConfigure = "./autogen.sh";
19   meta = with lib; {
20     description = "C99 HTML parsing algorithm";
21     homepage = "https://github.com/google/gumbo-parser";
22     maintainers = [ maintainers.nico202 ];
23     platforms = with platforms; linux ++ darwin;
24     license = licenses.asl20;
25   };