Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
688 B
Nix
30 lines
688 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromSourcehut,
|
|
lib,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "go-bare";
|
|
version = "0-unstable-2021-04-06";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~sircmpwn";
|
|
repo = "go-bare";
|
|
rev = "ab86bc2846d997bc8760fdb0d06d4a55e746b1db";
|
|
hash = "sha256-SKTYDKidB1Ia3Jg4EBg5rPAtqlXAa19RY5qieS82A34=";
|
|
};
|
|
|
|
vendorHash = "sha256-OhJb/q1XJ/U/AvCcCXw2Ll86UKlkHGuURHS5J6aXNTs=";
|
|
|
|
subPackages = [ "cmd/gen" ];
|
|
|
|
meta = with lib; {
|
|
description = "Implementation of the BARE message format for Go";
|
|
mainProgram = "gen";
|
|
homepage = "https://git.sr.ht/~sircmpwn/go-bare";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ poptart ];
|
|
};
|
|
}
|