Merge pull request #118081 from sbruder/drone-oss
drone: add option to build oss edition
This commit is contained in:
commit
ffa7b3d619
|
@ -1,7 +1,8 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
{ lib, fetchFromGitHub, buildGoModule
|
||||
, enableUnfree ? true }:
|
||||
|
||||
buildGoModule rec {
|
||||
name = "drone.io-${version}";
|
||||
pname = "drone.io${lib.optionalString (!enableUnfree) "-oss"}";
|
||||
version = "1.10.0";
|
||||
|
||||
vendorSha256 = "sha256-cKHX/GnvGELQBfoo0/1UmDQ4Z66GGnnHG7+1CzjinL0=";
|
||||
|
@ -15,9 +16,13 @@ buildGoModule rec {
|
|||
sha256 = "sha256-12Jac+mXWdUX8gWvmpdO9ROv7Bi0YzvyqnNDVNJOr34=";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
buildFlagsArray+=( "-tags" "${lib.optionalString (!enableUnfree) "oss nolimit"}" )
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
maintainers = with maintainers; [ elohmeier vdemeester ];
|
||||
license = licenses.asl20;
|
||||
license = with licenses; if enableUnfree then unfreeRedistributable else asl20;
|
||||
description = "Continuous Integration platform built on container technology";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3881,6 +3881,9 @@ in
|
|||
};
|
||||
|
||||
drone = callPackage ../development/tools/continuous-integration/drone { };
|
||||
drone-oss = callPackage ../development/tools/continuous-integration/drone {
|
||||
enableUnfree = false;
|
||||
};
|
||||
|
||||
drone-cli = callPackage ../development/tools/continuous-integration/drone-cli { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue