mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 16:14:50 +00:00
![Rodney Lorrimar](/assets/img/avatar_default.png)
New stable release. Version 2.6 is kept for backwards compatibility. https://github.com/buildkite/agent/releases/tag/v3.0.0 https://github.com/buildkite/agent/releases/tag/v3.0.1
13 lines
312 B
Nix
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;
|
|
})
|