aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-02-03 09:26:35 +0100
committerKatharina Fey <kookie@spacekookie.de>2020-02-03 09:26:35 +0100
commit899a451e08f7d6d2c8214d119c2a0316849a0ed4 (patch)
tree5e72a7288b7d2b33fead36fbfe91a02a48ff7fef /nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
parent5962418b6543dfb3ca34965c0fa16dd77543801b (diff)
parenta21c2fa3ea2b88e698db6fc151d9c7259ae14d96 (diff)
Merge commit 'a21c2fa3ea2b88e698db6fc151d9c7259ae14d96'
Diffstat (limited to 'nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix')
-rw-r--r--nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix b/nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
new file mode 100644
index 00000000000..7e86c93b9bd
--- /dev/null
+++ b/nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
@@ -0,0 +1,48 @@
+{ fetchFromGitHub, stdenv, buildGoPackage,
+ makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }:
+buildGoPackage rec {
+ name = "buildkite-agent-${version}";
+ version = "3.17.0";
+
+ goPackagePath = "github.com/buildkite/agent";
+
+ src = fetchFromGitHub {
+ owner = "buildkite";
+ repo = "agent";
+ rev = "v${version}";
+ sha256 = "0a7x919kxnpdn0pnhc5ilx1z6ninx8zgjvsd0jcg4qwh0qqp5ppr";
+ };
+ postPatch = ''
+ substituteInPlace bootstrap/shell/shell.go --replace /bin/bash ${bash}/bin/bash
+ '';
+
+ 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 = ''
+ # Fix binary name
+ mv $bin/bin/{agent,buildkite-agent}
+
+ # These are runtime dependencies
+ wrapProgram $bin/bin/buildkite-agent \
+ --prefix PATH : '${stdenv.lib.makeBinPath [ openssh git coreutils gnused gnugrep ]}'
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Build runner for buildkite.com";
+ longDescription = ''
+ The buildkite-agent is a small, reliable, and cross-platform build runner
+ that makes it easy to run automated builds on your own infrastructure.
+ It’s main responsibilities are polling buildkite.com for work, running
+ build jobs, reporting back the status code and output log of the job,
+ and uploading the job's artifacts.
+ '';
+ homepage = https://buildkite.com/docs/agent;
+ license = licenses.mit;
+ maintainers = with maintainers; [ pawelpacana zimbatm rvl ];
+ platforms = platforms.unix;
+ };
+}