Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchFromGitHub, buildGoModule }: 2 3buildGoModule rec { 4 pname = "github-commenter"; 5 version = "0.19.0"; 6 7 src = fetchFromGitHub { 8 owner = "cloudposse"; 9 repo = pname; 10 rev = version; 11 hash = "sha256-pCcTdj2ZgGIpa6784xkBX29LVu1o5ORqqk9j9wR/V8k="; 12 }; 13 14 vendorHash = "sha256-etR//FfHRzCL6WEZSqeaKYu3eLjxA0x5mZJRe1yvycQ="; 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}