summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2018-04-25 13:47:26 +0100
committerzimbatm <zimbatm@zimbatm.com>2018-04-25 13:47:26 +0100
commitca7d98399976be0dd562d1f8ecd62ed3e5cd5656 (patch)
tree8ca6c50c6e5911cd640951a58060f02431b31051 /pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix
parent8d58b1a0a019bb00ac6fb1792fe36e81847b7c92 (diff)
downloadnixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.tar
nixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.tar.gz
nixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.tar.bz2
nixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.tar.lz
nixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.tar.xz
nixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.tar.zst
nixpkgs-ca7d98399976be0dd562d1f8ecd62ed3e5cd5656.zip
buildkite-agent3: init at 3.0.1 (#39471)
New stable release. Version 2.6 is kept for backwards compatibility.

https://github.com/buildkite/agent/releases/tag/v3.0.0
https://github.com/buildkite/agent/releases/tag/v3.0.1
Diffstat (limited to 'pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix')
-rw-r--r--pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix b/pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix
new file mode 100644
index 00000000000..2ceaee5650b
--- /dev/null
+++ b/pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix
@@ -0,0 +1,12 @@
+{ callPackage, fetchFromGitHub, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  src = fetchFromGitHub {
+    owner = "buildkite";
+    repo = "agent";
+    rev = "v${version}";
+    sha256 = "09smyrzp1xkczlmh8vqb7bmjb2b5d6yf9birjgaw36c6m44bpfvs";
+  };
+  version = "3.0.1";
+  hasBootstrapScript = false;
+})