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
31 lines
658 B
Nix
31 lines
658 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromSourcehut,
|
|
lib,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "openring";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~sircmpwn";
|
|
repo = "openring";
|
|
rev = version;
|
|
sha256 = "sha256-BY2AtgZXzPLqHk3hd6D+XXbrwvWS9DNTKwLqsua/3uw=";
|
|
};
|
|
|
|
vendorHash = "sha256-BbBTmkGyLrIWphXC+dBaHaVzHuXRZ+4N/Jt2k3nF7Z4=";
|
|
|
|
# The package has no tests.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Webring for static site generators";
|
|
homepage = "https://sr.ht/~sircmpwn/openring";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ sumnerevans ];
|
|
mainProgram = "openring";
|
|
};
|
|
}
|