2021-01-25 08:26:54 +00:00
|
|
|
|
{ fetchFromGitHub, lib, buildGoModule,
|
2021-04-03 23:32:05 +01:00
|
|
|
|
makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep,
|
|
|
|
|
nixosTests }:
|
2020-10-28 22:43:24 +00:00
|
|
|
|
buildGoModule rec {
|
2018-09-26 18:57:32 +01:00
|
|
|
|
name = "buildkite-agent-${version}";
|
2021-10-29 14:25:33 +01:00
|
|
|
|
version = "3.33.3";
|
2018-09-26 18:57:32 +01:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "buildkite";
|
|
|
|
|
repo = "agent";
|
|
|
|
|
rev = "v${version}";
|
2021-10-29 14:25:33 +01:00
|
|
|
|
sha256 = "sha256-RCKHVFYYcWraUwsGuD/anmWpNwc7cHc9jm0LwR9WRzA=";
|
2018-09-26 18:57:32 +01:00
|
|
|
|
};
|
2020-10-28 22:43:24 +00:00
|
|
|
|
|
2021-05-29 10:27:31 +01:00
|
|
|
|
vendorSha256 = "sha256-n3XRxpEKjHf7L7fcGscWTVKBtot9waZbLoS9cG0kHfI=";
|
2020-10-28 22:43:24 +00:00
|
|
|
|
|
2018-09-26 18:57:32 +01:00
|
|
|
|
postPatch = ''
|
|
|
|
|
substituteInPlace bootstrap/shell/shell.go --replace /bin/bash ${bash}/bin/bash
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
2020-10-28 22:43:24 +00:00
|
|
|
|
doCheck = false;
|
2018-09-26 18:57:32 +01:00
|
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
|
# Fix binary name
|
2020-04-28 02:50:57 +01:00
|
|
|
|
mv $out/bin/{agent,buildkite-agent}
|
2018-09-26 18:57:32 +01:00
|
|
|
|
|
|
|
|
|
# These are runtime dependencies
|
2020-04-28 02:50:57 +01:00
|
|
|
|
wrapProgram $out/bin/buildkite-agent \
|
2021-01-23 12:26:19 +00:00
|
|
|
|
--prefix PATH : '${lib.makeBinPath [ openssh git coreutils gnused gnugrep ]}'
|
2018-09-26 18:57:32 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2021-04-03 23:32:05 +01:00
|
|
|
|
passthru.tests = {
|
|
|
|
|
smoke-test = nixosTests.buildkite-agents;
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
|
meta = with lib; {
|
2018-09-26 18:57:32 +01: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.
|
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://buildkite.com/docs/agent";
|
2018-09-26 18:57:32 +01:00
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ pawelpacana zimbatm rvl ];
|
2020-10-28 22:43:24 +00:00
|
|
|
|
platforms = with platforms; unix ++ darwin;
|
2018-09-26 18:57:32 +01:00
|
|
|
|
};
|
|
|
|
|
}
|