drone-runner-exec: init at unstable-2020-04-19 (#115003)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
wip/yesman
Jörg Thalheim 3 years ago committed by GitHub
parent e61df8ad51
commit f003d2c9ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,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 ];
};
}

@ -3782,6 +3782,8 @@ in
drone-cli = callPackage ../development/tools/continuous-integration/drone-cli { };
drone-runner-exec = callPackage ../development/tools/continuous-integration/drone-runner-exec { };
dropbear = callPackage ../tools/networking/dropbear { };
dsview = libsForQt5.callPackage ../applications/science/electronics/dsview { };

Loading…
Cancel
Save