gitAndTools.git-chglog: init at 0.9.1
This commit is contained in:
parent
c82aa7580c
commit
cba7a74806
2 changed files with 24 additions and 0 deletions
|
@ -72,6 +72,8 @@ let
|
|||
# support for bugzilla
|
||||
git-bz = callPackage ./git-bz { };
|
||||
|
||||
git-chglog = callPackage ./git-chglog { };
|
||||
|
||||
git-cinnabar = callPackage ./git-cinnabar { };
|
||||
|
||||
git-codeowners = callPackage ./git-codeowners { };
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "git-chglog";
|
||||
version = "0.9.1";
|
||||
|
||||
goPackagePath = "github.com/git-chglog/git-chglog";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "git-chglog";
|
||||
repo = "git-chglog";
|
||||
rev = version;
|
||||
sha256 = "08x7w1jlvxxvwnz6pvkjmfd3nqayd8n15r9jbqi2amrp31z0gq0p";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "CHANGELOG generator implemented in Go (Golang)";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ldenefle ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in a new issue