1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #268725 from helsinki-systems/upd/gumbo

gumbo: 0.10.1 -> 0.12.1
This commit is contained in:
Martin Weinelt 2023-12-02 23:13:51 +01:00 committed by GitHub
commit efcd9c73d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,21 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
{ lib
, stdenv
, fetchFromGitea
, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "gumbo";
version = "0.10.1";
version = "0.12.1";
src = fetchFromGitHub {
owner = "google";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "grisha";
repo = "gumbo-parser";
rev = "v${version}";
sha256 = "0xslckwdh2i0g2qjsb6rnm8mjmbagvziz0hjlf7d1lbljfms1iw1";
rev = version;
hash = "sha256-d4V4bI08Prmg3U0KGu4yIwpHcvTJT3NAd4lbzdBU/AE=";
};
strictDeps = true;
nativeBuildInputs = [ autoconf automake libtool ];
preConfigure = "./autogen.sh";
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
description = "C99 HTML parsing algorithm";