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

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by Jörg Thalheim Sandro and committed by GitHub f003d2c9 e61df8ad

+28
+26
pkgs/development/tools/continuous-integration/drone-runner-exec/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "drone-runner-exec"; 8 + version = "unstable-2020-04-19"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "drone-runners"; 12 + repo = "drone-runner-exec"; 13 + rev = "c0a612ef2bdfdc6d261dfbbbb005c887a0c3668d"; 14 + sha256 = "sha256-0UIJwpC5Y2TQqyZf6C6neICYBZdLQBWAZ8/K1l6KVRs="; 15 + }; 16 + 17 + vendorSha256 = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw="; 18 + 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 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 3782 3782 3783 3783 drone-cli = callPackage ../development/tools/continuous-integration/drone-cli { }; 3784 3784 3785 + drone-runner-exec = callPackage ../development/tools/continuous-integration/drone-runner-exec { }; 3786 + 3785 3787 dropbear = callPackage ../tools/networking/dropbear { }; 3786 3788 3787 3789 dsview = libsForQt5.callPackage ../applications/science/electronics/dsview { };