buildkite-cli: init at 1.1.0 (#89399)
This commit is contained in:
parent
a59af90880
commit
8520ec69c6
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "buildkite-cli";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "buildkite";
|
||||||
|
repo = "cli";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "05hz59qzadkk4ji5icv5sxih31pnn0abnmiwcyfa2mr3l5jaqjnd";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "0jxh3yhh0sdvaykhinxngpipk369hw8z1y3g2z4c1115m5rjp2bb";
|
||||||
|
|
||||||
|
subPackages = [ "cmd/bk" ];
|
||||||
|
|
||||||
|
buildFlagsArray = [ "-ldflags=-s -w -X main.VERSION=${version}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A command line interface for Buildkite";
|
||||||
|
homepage = "https://github.com/buildkite/cli";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ groodt ];
|
||||||
|
};
|
||||||
|
}
|
@ -10141,6 +10141,8 @@ in
|
|||||||
buildkite-agent2 = throw "pkgs.buildkite-agent2 has been discontinued. Please use pkgs.buildkite-agent (v3.x)";
|
buildkite-agent2 = throw "pkgs.buildkite-agent2 has been discontinued. Please use pkgs.buildkite-agent (v3.x)";
|
||||||
buildkite-agent3 = callPackage ../development/tools/continuous-integration/buildkite-agent { };
|
buildkite-agent3 = callPackage ../development/tools/continuous-integration/buildkite-agent { };
|
||||||
|
|
||||||
|
buildkite-cli = callPackage ../development/tools/continuous-integration/buildkite-cli { };
|
||||||
|
|
||||||
libbpf = callPackage ../os-specific/linux/libbpf { };
|
libbpf = callPackage ../os-specific/linux/libbpf { };
|
||||||
|
|
||||||
bpftool = callPackage ../os-specific/linux/bpftool { };
|
bpftool = callPackage ../os-specific/linux/bpftool { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user