mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-08 14:53:20 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
26 lines
618 B
Nix
26 lines
618 B
Nix
{ buildGoModule, fetchFromSourcehut, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "openring";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~sircmpwn";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-BY2AtgZXzPLqHk3hd6D+XXbrwvWS9DNTKwLqsua/3uw=";
|
|
};
|
|
|
|
vendorHash = "sha256-BbBTmkGyLrIWphXC+dBaHaVzHuXRZ+4N/Jt2k3nF7Z4=";
|
|
|
|
# The package has no tests.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A webring for static site generators";
|
|
homepage = "https://sr.ht/~sircmpwn/openring";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ sumnerevans ];
|
|
};
|
|
}
|