summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/buildkite-agent/2.x.nix
blob: 6a73e2581822e0f6741c7c5120481b7e06cc5109 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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;
})