Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 25 lines 669 B view raw
1{ lib, fetchFromGitHub, buildGoPackage }: 2 3buildGoPackage rec { 4 pname = "github-commenter"; 5 version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "cloudposse"; 9 repo = pname; 10 rev = version; 11 sha256 = "0y7yw7x8gqfbkqdfrwd9lffx3rrp62nz1aa86liy2dja97dacpij"; 12 }; 13 14 goPackagePath = "github.com/cloudposse/${pname}"; 15 16 goDeps = ./deps.nix; 17 18 meta = with lib; { 19 description = "Command line utility for creating GitHub comments on Commits, Pull Request Reviews or Issues"; 20 license = licenses.asl20; 21 homepage = "https://github.com/cloudposse/github-commenter"; 22 maintainers = [ maintainers.mmahut ]; 23 platforms = platforms.linux; 24 }; 25}