Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 629 B view raw
1{ lib, fetchFromGitHub, buildGoModule }: 2 3buildGoModule rec { 4 pname = "github-commenter"; 5 version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "cloudposse"; 9 repo = pname; 10 rev = version; 11 sha256 = "sha256-IBo4FAoYX1FmrmQ9mlyyu1TGLY7dlH7pWalBoRb2puE="; 12 }; 13 14 vendorSha256 = "sha256-H1SnNG+/ALYs7h/oT8zWBhAXOuCFY0Sto2ATBBZg2ek="; 15 16 meta = with lib; { 17 description = "Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues"; 18 license = licenses.asl20; 19 homepage = "https://github.com/cloudposse/github-commenter"; 20 maintainers = [ maintainers.mmahut ]; 21 }; 22}