2017-10-20 18:16:05 +01:00
|
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep }:
|
|
|
|
|
let
|
2018-02-17 10:35:04 +00:00
|
|
|
|
version = "2.6.9";
|
2017-10-20 18:16:05 +01:00
|
|
|
|
goPackagePath = "github.com/buildkite/agent";
|
|
|
|
|
in
|
|
|
|
|
buildGoPackage {
|
2016-03-10 15:00:09 +00:00
|
|
|
|
name = "buildkite-agent-${version}";
|
|
|
|
|
|
2017-10-20 18:16:05 +01:00
|
|
|
|
inherit goPackagePath;
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "buildkite";
|
|
|
|
|
repo = "agent";
|
|
|
|
|
rev = "v${version}";
|
2018-02-17 10:35:04 +00:00
|
|
|
|
sha256 = "0rlinj7dcr8vzl1pb15nfny8jkvvj50i8czf4ahv26avnfycm4pz";
|
2016-03-10 15:00:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
2018-02-17 10:35:04 +00:00
|
|
|
|
# on Linux, the TMPDIR is /build which is the same prefix as this package
|
|
|
|
|
# remove once #35068 is merged
|
|
|
|
|
noAuditTmpdir = stdenv.isLinux;
|
|
|
|
|
|
2017-10-20 18:16:05 +01:00
|
|
|
|
postInstall = ''
|
|
|
|
|
# Install bootstrap.sh
|
|
|
|
|
mkdir -p $bin/libexec/buildkite-agent
|
|
|
|
|
cp $NIX_BUILD_TOP/go/src/${goPackagePath}/templates/bootstrap.sh $bin/libexec/buildkite-agent
|
|
|
|
|
sed -e "s|#!/bin/bash|#!${bash}/bin/bash|g" -i $bin/libexec/buildkite-agent/bootstrap.sh
|
|
|
|
|
|
|
|
|
|
# Fix binary name
|
|
|
|
|
mv $bin/bin/{agent,buildkite-agent}
|
2016-03-10 15:00:09 +00:00
|
|
|
|
|
2017-10-20 18:16:05 +01:00
|
|
|
|
# These are runtime dependencies
|
|
|
|
|
wrapProgram $bin/bin/buildkite-agent \
|
|
|
|
|
--prefix PATH : '${stdenv.lib.makeBinPath [ openssh git coreutils gnused gnugrep ]}' \
|
|
|
|
|
--set BUILDKITE_BOOTSTRAP_SCRIPT_PATH $bin/libexec/buildkite-agent/bootstrap.sh
|
2016-03-10 15:00:09 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2017-10-20 18:16:05 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2016-03-10 15:00:09 +00:00
|
|
|
|
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;
|
2017-10-20 18:16:05 +01:00
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ pawelpacana zimbatm ];
|
2018-02-17 10:35:04 +00:00
|
|
|
|
platforms = platforms.unix;
|
2016-03-10 15:00:09 +00:00
|
|
|
|
};
|
|
|
|
|
}
|