2021-03-23 19:22:30 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "drone-runner-docker";
|
2022-07-14 12:49:19 +00:00
|
|
|
version = "1.8.1";
|
2021-03-23 19:22:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "drone-runners";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-07-14 12:49:19 +00:00
|
|
|
sha256 = "sha256-3SbvnW+mCwaBCF77rAnDMqZRHX9wDCjXvFGq9w0E5Qw=";
|
2021-03-23 19:22:30 +00:00
|
|
|
};
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
vendorSha256 = "sha256-E18ykjQc1eoHpviYok+NiLaeH01UMQmigl9JDwtR+zo=";
|
2021-03-23 19:22:30 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
maintainers = with maintainers; [ endocrimes ];
|
|
|
|
license = licenses.unfreeRedistributable;
|
|
|
|
homepage = "https://github.com/drone-runners/drone-runner-docker";
|
|
|
|
description = "Drone pipeline runner that executes builds inside Docker containers";
|
|
|
|
};
|
|
|
|
}
|