Merge pull request #100582 from ldenefle/git-chglog-0.9.1
gitAndTools.git-chglog: init at 0.9.1
This commit is contained in:
commit
349288d101
3 changed files with 30 additions and 0 deletions
|
@ -4822,6 +4822,12 @@
|
|||
githubId = 20250323;
|
||||
name = "Lucio Delelis";
|
||||
};
|
||||
ldenefle = {
|
||||
email = "ldenefle@gmail.com";
|
||||
github = "ldenefle";
|
||||
githubId = 20558127;
|
||||
name = "Lucas Denefle";
|
||||
};
|
||||
ldesgoui = {
|
||||
email = "ldesgoui@gmail.com";
|
||||
github = "ldesgoui";
|
||||
|
|
|
@ -74,6 +74,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