2021-04-05 15:23:46 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule
|
|
|
|
, enableUnfree ? true }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
2021-04-05 15:23:46 +00:00
|
|
|
pname = "drone.io${lib.optionalString (!enableUnfree) "-oss"}";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "2.12.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
vendorSha256 = "sha256-y9knuU/+hkXBLgMmJ5Trp0A3lEiLC1I2Dh85/CFBXow=";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-03-30 09:31:56 +00:00
|
|
|
owner = "harness";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "drone";
|
|
|
|
rev = "v${version}";
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-Bpv08iD0wRiscwNE8TIBgZMlChQFQEegbjkzDv4mIYU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-08-08 23:34:03 +00:00
|
|
|
tags = lib.optionals (!enableUnfree) [ "oss" "nolimit" ];
|
2021-04-05 15:23:46 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2022-03-30 09:31:56 +00:00
|
|
|
maintainers = with maintainers; [ elohmeier vdemeester techknowlogick ];
|
2021-04-05 15:23:46 +00:00
|
|
|
license = with licenses; if enableUnfree then unfreeRedistributable else asl20;
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Continuous Integration platform built on container technology";
|
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
}
|