Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2020-11-06 12:51:56 +01:00
115 changed files with 3226 additions and 2507 deletions
@@ -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 ];
};
}