lol
at 24.11-pre 27 lines 789 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule 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 vendorHash = "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 mainProgram = "drone-runner-exec"; 26 }; 27}