nixpkgs/pkgs/development/tools/continuous-integration/buildkite-agent/2.x.nix
2018-04-25 13:47:26 +01:00

13 lines
312 B
Nix

{ callPackage, fetchFromGitHub, ... } @ args:
callPackage ./generic.nix (args // rec {
src = fetchFromGitHub {
owner = "buildkite";
repo = "agent";
rev = "v${version}";
sha256 = "07065hhhb418w5qlqnyiap45r59paysysbwz1l7dmaw3j4q8m8rg";
};
version = "2.6.10";
hasBootstrapScript = true;
})