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";
|
||||
version = "0.9.1";
|
||||
|
||||
goPackagePath = "github.com/git-chglog/git-chglog";
|
||||
version = "0.14.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "git-chglog";
|
||||
repo = "git-chglog";
|
||||
rev = version;
|
||||
sha256 = "08x7w1jlvxxvwnz6pvkjmfd3nqayd8n15r9jbqi2amrp31z0gq0p";
|
||||
rev = "v${version}";
|
||||
sha256 = "124bqywkj37gv61fswgrg528bf3rjqms1664x22lkn0sqh22zyv1";
|
||||
};
|
||||
|
||||
vendorSha256 = "09zjypmcc3ra7sw81q1pbbrlpxxp4k00p1cfkrrih8wvb25z89h5";
|
||||
|
||||
buildFlagsArray = [ "-ldflags= -s -w -X=main.Version=v${version}" ];
|
||||
|
||||
subPackages = [ "cmd/git-chglog" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CHANGELOG generator implemented in Go (Golang)";
|
||||
homepage = "https://github.com/git-chglog/git-chglog";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ldenefle ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user