{ lib , fetchFromGitHub , buildGoModule , enableUnfree ? true }: buildGoModule rec { pname = "drone.io${lib.optionalString (!enableUnfree) "-oss"}"; version = "2.21.0"; src = fetchFromGitHub { owner = "harness"; repo = "drone"; rev = "v${version}"; sha256 = "sha256-ywKRibJxOVYQ7SNef38eUk1QkVnCoFbIMIGPCw2Woek="; }; vendorHash = "sha256-nryEdqRKXyum9Vrna3aqhhYekjvNIvct8gqbKEBR9iE="; 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; }; }