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

authored by Rodney Lorrimar and committed by zimbatm.tngl.sh 34e6226a e18b4e86

+7 -3
+7 -3
pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
··· 1 { stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }: 2 let 3 - version = "2.6.6"; 4 goPackagePath = "github.com/buildkite/agent"; 5 in 6 buildGoPackage { ··· 12 owner = "buildkite"; 13 repo = "agent"; 14 rev = "v${version}"; 15 - sha256 = "0rpi63mfzlm39517l4xjcka3m4dnfjzwvpi0i1rpf1z2288cnkyx"; 16 }; 17 18 nativeBuildInputs = [ makeWrapper ]; 19 20 postInstall = '' 21 # Install bootstrap.sh ··· 44 homepage = https://buildkite.com/docs/agent; 45 license = licenses.mit; 46 maintainers = with maintainers; [ pawelpacana zimbatm ]; 47 - platforms = platforms.linux ++ platforms.darwin; 48 }; 49 }
··· 1 { stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }: 2 let 3 + version = "2.6.9"; 4 goPackagePath = "github.com/buildkite/agent"; 5 in 6 buildGoPackage { ··· 12 owner = "buildkite"; 13 repo = "agent"; 14 rev = "v${version}"; 15 + sha256 = "0rlinj7dcr8vzl1pb15nfny8jkvvj50i8czf4ahv26avnfycm4pz"; 16 }; 17 18 nativeBuildInputs = [ makeWrapper ]; 19 + 20 + # on Linux, the TMPDIR is /build which is the same prefix as this package 21 + # remove once #35068 is merged 22 + noAuditTmpdir = stdenv.isLinux; 23 24 postInstall = '' 25 # Install bootstrap.sh ··· 48 homepage = https://buildkite.com/docs/agent; 49 license = licenses.mit; 50 maintainers = with maintainers; [ pawelpacana zimbatm ]; 51 + platforms = platforms.unix; 52 }; 53 }