github-commenter: init at 0.5.0

This commit is contained in:
Marek Mahut
2019-08-03 17:13:59 +02:00
parent 58f5c8e0cb
commit 9a8e4c0da1
3 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
pname = "github-commenter";
version = "0.5.0";
src = fetchFromGitHub {
owner = "cloudposse";
repo = pname;
rev = version;
sha256 = "0y7yw7x8gqfbkqdfrwd9lffx3rrp62nz1aa86liy2dja97dacpij";
};
goPackagePath = "github.com/cloudposse/${pname}";
goDeps = ./deps.nix;
meta = with lib; {
description = "Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues";
license = licenses.asl20;
homepage = "https://github.com/cloudposse/github-commenter";
maintainers = [ maintainers.mmahut ];
platforms = platforms.linux;
};
}