depot/third_party/nixpkgs/pkgs/development/libraries/gumbo/default.nix
Default email d56f44df06 Project import generated by Copybara.
GitOrigin-RevId: bc4b9eef3ce3d5a90d8693e8367c9cbfc9fc1e13
2022-04-03 20:54:34 +02:00

26 lines
671 B
Nix

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