fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 stdenv,
4 fetchFromGitea,
5 autoreconfHook,
6}:
7
8stdenv.mkDerivation rec {
9 pname = "gumbo";
10 version = "0.13.1";
11
12 src = fetchFromGitea {
13 domain = "codeberg.org";
14 owner = "gumbo-parser";
15 repo = "gumbo-parser";
16 rev = version;
17 hash = "sha256-QNzllJI0ZHRl8o3ktJq+rI8v4SUUJ3MJ6uIubqf1heI=";
18 };
19
20 nativeBuildInputs = [ autoreconfHook ];
21
22 enableParallelBuilding = true;
23
24 meta = with lib; {
25 description = "C99 HTML parsing algorithm";
26 homepage = "https://codeberg.org/gumbo-parser/gumbo-parser";
27 maintainers = [ maintainers.nico202 ];
28 platforms = with platforms; linux ++ darwin;
29 license = licenses.asl20;
30 };
31}