nixpkgs/pkgs/development/tools/continuous-integration/drone/default.nix
2024-01-02 18:00:03 +00:00

31 lines
818 B
Nix

{ lib
, fetchFromGitHub
, buildGoModule
, enableUnfree ? true
}:
buildGoModule rec {
pname = "drone.io${lib.optionalString (!enableUnfree) "-oss"}";
version = "2.22.0";
src = fetchFromGitHub {
owner = "harness";
repo = "drone";
rev = "v${version}";
sha256 = "sha256-haxxILbM3REdSK4h4LN+HhRvl3VK9Ozf2NfnLTL5T3A=";
};
vendorHash = "sha256-n4KbKkqAnHDIsXs8A/FE+rCkSKQKr5fv7npJ/X6t0mk=";
tags = lib.optionals (!enableUnfree) [ "oss" "nolimit" ];
doCheck = false;
meta = with lib; {
description = "Continuous Integration platform built on container technology";
homepage = "https://github.com/harness/drone";
maintainers = with maintainers; [ elohmeier vdemeester techknowlogick ];
license = with licenses; if enableUnfree then unfreeRedistributable else asl20;
};
}