summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix
blob: 373c6183725d58c83386281ab67e6cfdddd8fcb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "drone-runner-exec";
  version = "unstable-2020-04-19";

  src = fetchFromGitHub {
    owner = "drone-runners";
    repo = "drone-runner-exec";
    rev = "c0a612ef2bdfdc6d261dfbbbb005c887a0c3668d";
    sha256 = "sha256-0UIJwpC5Y2TQqyZf6C6neICYBZdLQBWAZ8/K1l6KVRs=";
  };

  vendorSha256 = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw=";

  meta = with lib; {
    description = "Drone pipeline runner that executes builds directly on the host machine";
    homepage = "https://github.com/drone-runners/drone-runner-exec";
    # https://polyformproject.org/licenses/small-business/1.0.0/
    license = licenses.unfree;
    maintainers = with maintainers; [ mic92 ];
  };
}