2022-09-30 11:47:45 +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"}";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "2.21.0";
|
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}";
|
2024-01-02 11:29:13 +00:00
|
|
|
sha256 = "sha256-ywKRibJxOVYQ7SNef38eUk1QkVnCoFbIMIGPCw2Woek=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
vendorHash = "sha256-nryEdqRKXyum9Vrna3aqhhYekjvNIvct8gqbKEBR9iE=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
2021-08-08 23:34:03 +00:00
|
|
|
tags = lib.optionals (!enableUnfree) [ "oss" "nolimit" ];
|
2021-04-05 15:23:46 +00:00
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2023-02-02 18:25:31 +00:00
|
|
|
description = "Continuous Integration platform built on container technology";
|
|
|
|
homepage = "https://github.com/harness/drone";
|
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
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
}
|