biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / github-commenter / default.nix
blob50a12e0eb0a80a36e42525a769cfc941b847c58c
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "github-commenter";
5   version = "0.28.0";
7   src = fetchFromGitHub {
8     owner = "cloudposse";
9     repo = pname;
10     rev = version;
11     hash = "sha256-x3/ae22ub9Us3mvSmvq9ohlkujvZCUfSrmZeQNvIWzE=";
12   };
14   vendorHash = "sha256-DS2cTYQasIKmyqHS3kTpNMA4fuLxSv4n7ZQjeRWE0gI=";
16   meta = with lib; {
17     description = "Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues";
18     mainProgram = "github-commenter";
19     license = licenses.asl20;
20     homepage = "https://github.com/cloudposse/github-commenter";
21     maintainers = [ maintainers.mmahut ];
22   };