about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/buildkite-agent/3.x.nix
blob: 2ceaee5650b213a8a2c0ec20336ef51a664577e5 (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 = "09smyrzp1xkczlmh8vqb7bmjb2b5d6yf9birjgaw36c6m44bpfvs";
  };
  version = "3.0.1";
  hasBootstrapScript = false;
})