0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
22 lines
671 B
Nix
22 lines
671 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "drone-runner-docker";
|
|
version = "1.8.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "drone-runners";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-ZoQeCuT5FRhxp/ikB0gkp3QVOQ6OS7ukkz4QanWT9G0=";
|
|
};
|
|
|
|
vendorHash = "sha256-KcNp3VdJ201oxzF0bLXY4xWHqHNz54ZrVSI96cfhU+k=";
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ endocrimes indeednotjames ];
|
|
license = licenses.unfreeRedistributable;
|
|
homepage = "https://github.com/drone-runners/drone-runner-docker";
|
|
description = "Drone pipeline runner that executes builds inside Docker containers";
|
|
};
|
|
}
|