bump: init at 0.2.2

gstqt5
Doron Behar 2020-09-21 18:15:08 +03:00
parent 8a5eb89b0f
commit d784ae8cc2
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "bump";
version = "0.2.2";
src = fetchFromGitHub {
owner = "mroth";
repo = pname;
rev = "v${version}";
sha256 = "0092jn7nxnr64fyb2yy9amrd8gl7q9p70a2yq9jrgr1pyrlrazbq";
};
vendorSha256 = "0w5sqg1ii4vp7iijs6ffbskkj2xqggbr40j6wxrjrbjr1qisl8r1";
doCheck = false;
buildFlagsArray = [
"-ldflags=-X main.buildVersion=${version} -X main.buildCommit=${version} -X main.buildDate=1970-01-01"
];
meta = with lib; {
license = licenses.mit;
homepage = "https://github.com/mroth/bump";
description = "CLI tool to draft a GitHub Release for the next semantic version";
maintainers = with maintainers; [ doronbehar ];
};
}

View File

@ -10696,6 +10696,8 @@ in
buildkite-cli = callPackage ../development/tools/continuous-integration/buildkite-cli { };
bump = callPackage ../development/tools/github/bump { };
libbpf = callPackage ../os-specific/linux/libbpf { };
bpftool = callPackage ../os-specific/linux/bpftool { };