biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / continuous-integration / drone-runner-ssh / default.nix
blob92a015f8e95ae81b383647065220a1cfee19bee1
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "drone-runner-ssh";
5   version = "unstable-2022-12-22";
7   src = fetchFromGitHub {
8     owner = "drone-runners";
9     repo = pname;
10     rev = "ee70745c60e070a7fac57d9cecc41252e7a3ff55";
11     sha256 = "sha256-YUyhEA1kYIFLN+BI2A8PFeSgifoVNmNPKtdS58MwwVU=";
12   };
14   vendorHash = "sha256-Vj6ZmNwegKBVJPh6MsjtLMmX9WR76msuR2DPM8Qyhe0=";
16   meta = with lib; {
17     description = "Experimental Drone runner that executes a pipeline on a remote machine";
18     homepage = "https://github.com/drone-runners/drone-runner-ssh";
19     license = licenses.unfreeRedistributable;
20     maintainers = teams.c3d2.members;
21     mainProgram = "drone-runner-ssh";
22   };