base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / dr / drone-runner-exec / package.nix
blob1e9d1e96a9a970383d929c8a2faa42fc36496e3e
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "drone-runner-exec";
8   version = "unstable-2020-04-19";
10   src = fetchFromGitHub {
11     owner = "drone-runners";
12     repo = "drone-runner-exec";
13     rev = "c0a612ef2bdfdc6d261dfbbbb005c887a0c3668d";
14     sha256 = "sha256-0UIJwpC5Y2TQqyZf6C6neICYBZdLQBWAZ8/K1l6KVRs=";
15   };
17   vendorHash = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw=";
19   meta = with lib; {
20     description = "Drone pipeline runner that executes builds directly on the host machine";
21     homepage = "https://github.com/drone-runners/drone-runner-exec";
22     # https://polyformproject.org/licenses/small-business/1.0.0/
23     license = licenses.unfree;
24     maintainers = with maintainers; [ mic92 ];
25     mainProgram = "drone-runner-exec";
26   };