Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
790 B
Nix
29 lines
790 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "drone-runner-exec";
|
|
version = "unstable-2020-04-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "drone-runners";
|
|
repo = "drone-runner-exec";
|
|
rev = "c0a612ef2bdfdc6d261dfbbbb005c887a0c3668d";
|
|
sha256 = "sha256-0UIJwpC5Y2TQqyZf6C6neICYBZdLQBWAZ8/K1l6KVRs=";
|
|
};
|
|
|
|
vendorHash = "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 ];
|
|
mainProgram = "drone-runner-exec";
|
|
};
|
|
}
|