about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration/drone
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.io>2022-09-21 09:56:47 -0400
committertechknowlogick <techknowlogick@gitea.io>2022-09-22 10:07:03 -0400
commita8d60f3c678e3c30953d478035768be2a6d701aa (patch)
tree664c2440d2a080f30573550c51f1878cb6166bda /pkgs/development/tools/continuous-integration/drone
parent8a57b26b001e010922e94f83a897bee332dfafe5 (diff)
drone: 2.12.1 -> 2.13.0
Diffstat (limited to 'pkgs/development/tools/continuous-integration/drone')
-rw-r--r--pkgs/development/tools/continuous-integration/drone/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/development/tools/continuous-integration/drone/default.nix b/pkgs/development/tools/continuous-integration/drone/default.nix
index 313099d45e072..4beef373eeabd 100644
--- a/pkgs/development/tools/continuous-integration/drone/default.nix
+++ b/pkgs/development/tools/continuous-integration/drone/default.nix
@@ -1,23 +1,26 @@
-{ lib, fetchFromGitHub, buildGoModule
-, enableUnfree ? true }:
+{ lib
+, fetchFromGitHub
+, buildGoModule
+, enableUnfree ? true
+}:
 
 buildGoModule rec {
   pname = "drone.io${lib.optionalString (!enableUnfree) "-oss"}";
-  version = "2.12.1";
-
-  vendorSha256 = "sha256-hKJFYjIJVuGBiSIeTitI7kZdGjSRUTCPMhH72O0wm3I=";
-
-  doCheck = false;
+  version = "2.13.0";
 
   src = fetchFromGitHub {
     owner = "harness";
     repo = "drone";
     rev = "v${version}";
-    sha256 = "sha256-ZngZzpFjQLkiBDNrmgPXPCfDoeZbX/ynBXkuNrrGz3E=";
+    sha256 = "sha256-2NezH7+hsOz+r+gong2CxXVjtxRyIKkA0G6OGoJcGFk=";
   };
 
+  vendorSha256 = "sha256-6/wbxQ+Cv0lOlBqi8NUQQ8Z21w27betfeX/NiNDpOjA=";
+
   tags = lib.optionals (!enableUnfree) [ "oss" "nolimit" ];
 
+  doCheck = false;
+
   meta = with lib; {
     maintainers = with maintainers; [ elohmeier vdemeester techknowlogick ];
     license = with licenses; if enableUnfree then unfreeRedistributable else asl20;