about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2018-02-17 10:35:04 +0000
committerzimbatm <zimbatm@zimbatm.com>2018-02-17 10:35:04 +0000
commit34e6226ab7b5c9dbfa6387a12e51736485a1841a (patch)
treef782b810cbc9fe2e3313fe3e60204997f0c08cc3 /pkgs
parente18b4e867bf2a299bb2d75941a905cb574b1702c (diff)
downloadnixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.tar
nixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.tar.gz
nixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.tar.bz2
nixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.tar.lz
nixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.tar.xz
nixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.tar.zst
nixlib-34e6226ab7b5c9dbfa6387a12e51736485a1841a.zip
buildkite-agent: 2.6.6 -> 2.6.9 (#35033)
* buildkite-agent: 2.6.6 -> 2.6.9

Various upstream bug fixes.

https://github.com/buildkite/agent/releases/tag/v2.6.7
https://github.com/buildkite/agent/releases/tag/v2.6.8
https://github.com/buildkite/agent/releases/tag/v2.6.9

* buildkite-agent: fixes tmpdir audit error
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/continuous-integration/buildkite-agent/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
index ab090e6dc129..515e22788e50 100644
--- a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
+++ b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
@@ -1,6 +1,6 @@
 { stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }:
 let
-  version = "2.6.6";
+  version = "2.6.9";
   goPackagePath = "github.com/buildkite/agent";
 in
 buildGoPackage {
@@ -12,11 +12,15 @@ buildGoPackage {
     owner = "buildkite";
     repo = "agent";
     rev = "v${version}";
-    sha256 = "0rpi63mfzlm39517l4xjcka3m4dnfjzwvpi0i1rpf1z2288cnkyx";
+    sha256 = "0rlinj7dcr8vzl1pb15nfny8jkvvj50i8czf4ahv26avnfycm4pz";
   };
 
   nativeBuildInputs = [ makeWrapper ];
 
+  # on Linux, the TMPDIR is /build which is the same prefix as this package
+  # remove once #35068 is merged
+  noAuditTmpdir = stdenv.isLinux;
+
   postInstall = ''
     # Install bootstrap.sh
     mkdir -p $bin/libexec/buildkite-agent
@@ -44,6 +48,6 @@ buildGoPackage {
     homepage = https://buildkite.com/docs/agent;
     license = licenses.mit;
     maintainers = with maintainers; [ pawelpacana zimbatm ];
-    platforms = platforms.linux ++ platforms.darwin;
+    platforms = platforms.unix;
   };
 }