lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 25 lines 673 B view raw
1{ buildGoModule, fetchFromSourcehut, lib }: 2 3buildGoModule rec { 4 pname = "openring"; 5 version = "unstable-2021-06-28"; 6 7 src = fetchFromSourcehut { 8 owner = "~sircmpwn"; 9 repo = pname; 10 rev = "e566294050776355ca0d3bfd7a1f6f70767cd08b"; 11 sha256 = "sha256-h9Tout3KGiv6jbq9Ui3crb5NdTOHcn7BIy+aPoWG5sM="; 12 }; 13 14 vendorSha256 = "sha256-BbBTmkGyLrIWphXC+dBaHaVzHuXRZ+4N/Jt2k3nF7Z4="; 15 16 # The package has no tests. 17 doCheck = false; 18 19 meta = with lib; { 20 description = "A webring for static site generators"; 21 homepage = "https://git.sr.ht/~sircmpwn/openring"; 22 license = licenses.gpl3Only; 23 maintainers = with maintainers; [ sumnerevans ]; 24 }; 25}