Merge pull request #98400 from doronbehar/pkg/bump

bump: init at 0.2.2
This commit is contained in:
Doron Behar 2020-11-04 00:30:09 +02:00 committed by GitHub
commit d5560be0df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -10863,6 +10863,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 { };