git-chglog: 0.9.1 -> 0.14.2 (#120097)
This commit is contained in:
parent
6942038dbf
commit
793562da34
@ -1,20 +1,25 @@
|
|||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib, fetchFromGitHub, buildGoModule }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "git-chglog";
|
pname = "git-chglog";
|
||||||
version = "0.9.1";
|
version = "0.14.2";
|
||||||
|
|
||||||
goPackagePath = "github.com/git-chglog/git-chglog";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "git-chglog";
|
owner = "git-chglog";
|
||||||
repo = "git-chglog";
|
repo = "git-chglog";
|
||||||
rev = version;
|
rev = "v${version}";
|
||||||
sha256 = "08x7w1jlvxxvwnz6pvkjmfd3nqayd8n15r9jbqi2amrp31z0gq0p";
|
sha256 = "124bqywkj37gv61fswgrg528bf3rjqms1664x22lkn0sqh22zyv1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "09zjypmcc3ra7sw81q1pbbrlpxxp4k00p1cfkrrih8wvb25z89h5";
|
||||||
|
|
||||||
|
buildFlagsArray = [ "-ldflags= -s -w -X=main.Version=v${version}" ];
|
||||||
|
|
||||||
|
subPackages = [ "cmd/git-chglog" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "CHANGELOG generator implemented in Go (Golang)";
|
description = "CHANGELOG generator implemented in Go (Golang)";
|
||||||
|
homepage = "https://github.com/git-chglog/git-chglog";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ldenefle ];
|
maintainers = with maintainers; [ ldenefle ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user