Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 790 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule { 8 pname = "drone-runner-exec"; 9 version = "unstable-2020-04-19"; 10 11 src = fetchFromGitHub { 12 owner = "drone-runners"; 13 repo = "drone-runner-exec"; 14 rev = "c0a612ef2bdfdc6d261dfbbbb005c887a0c3668d"; 15 sha256 = "sha256-0UIJwpC5Y2TQqyZf6C6neICYBZdLQBWAZ8/K1l6KVRs="; 16 }; 17 18 vendorHash = "sha256-ypYuQKxRhRQGX1HtaWt6F6BD9vBpD8AJwx/4esLrJsw="; 19 20 meta = with lib; { 21 description = "Drone pipeline runner that executes builds directly on the host machine"; 22 homepage = "https://github.com/drone-runners/drone-runner-exec"; 23 # https://polyformproject.org/licenses/small-business/1.0.0/ 24 license = licenses.unfree; 25 maintainers = with maintainers; [ mic92 ]; 26 mainProgram = "drone-runner-exec"; 27 }; 28}