biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / continuous-integration / drone-runner-docker / default.nix
blobe4fc56d74ff2d2029fc3711c9ff6c2bac6460ec6
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "drone-runner-docker";
5   version = "1.8.3";
7   src = fetchFromGitHub {
8     owner = "drone-runners";
9     repo = pname;
10     rev = "refs/tags/v${version}";
11     sha256 = "sha256-ZoQeCuT5FRhxp/ikB0gkp3QVOQ6OS7ukkz4QanWT9G0=";
12   };
14   vendorHash = "sha256-KcNp3VdJ201oxzF0bLXY4xWHqHNz54ZrVSI96cfhU+k=";
16   meta = with lib; {
17     maintainers = with maintainers; [ endocrimes ];
18     license = licenses.unfreeRedistributable;
19     homepage = "https://github.com/drone-runners/drone-runner-docker";
20     description = "Drone pipeline runner that executes builds inside Docker containers";
21     mainProgram = "drone-runner-docker";
22   };