about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-03-27 12:49:36 +0200
committerGitHub <noreply@github.com>2022-03-27 12:49:36 +0200
commit25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e (patch)
tree8c53797de5d551ec8880de81a1d12d9106ab5bbb /pkgs
parent305985df3ec1ab6019bc83013ac6b0fa68871658 (diff)
parent006858945611d27ce512b85e8688bf221f536e09 (diff)
downloadnixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.tar
nixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.tar.gz
nixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.tar.bz2
nixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.tar.lz
nixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.tar.xz
nixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.tar.zst
nixlib-25d6fb865694e8c10467d8b2f5f49d8a4b6c2b4e.zip
Merge pull request #163084 from techknowlogick/bump-drone
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/continuous-integration/drone/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/continuous-integration/drone/default.nix b/pkgs/development/tools/continuous-integration/drone/default.nix
index 0f36f8dc0277..7e00f481752f 100644
--- a/pkgs/development/tools/continuous-integration/drone/default.nix
+++ b/pkgs/development/tools/continuous-integration/drone/default.nix
@@ -3,23 +3,23 @@
 
 buildGoModule rec {
   pname = "drone.io${lib.optionalString (!enableUnfree) "-oss"}";
-  version = "2.0.3";
+  version = "2.11.1";
 
-  vendorSha256 = "sha256-3qTH/p0l6Ke1F9SUcvK2diqZooOMnlXYO1PHLdJJ8PM=";
+  vendorSha256 = "sha256-oJBGHr4LjrX7e197s4tqkiysWJS3RRW6JWI9ncs/uHw=";
 
   doCheck = false;
 
   src = fetchFromGitHub {
-    owner = "drone";
+    owner = "harness";
     repo = "drone";
     rev = "v${version}";
-    sha256 = "sha256-MKV5kor+Wm9cuIFFcjSNyCgVKtY+/B9sgBOXMMRvMPI=";
+    sha256 = "sha256-bbWJo7PnwQaVKRpSnRK5pm0cD9orlkEOUa+y7UnACjg=";
   };
 
   tags = lib.optionals (!enableUnfree) [ "oss" "nolimit" ];
 
   meta = with lib; {
-    maintainers = with maintainers; [ elohmeier vdemeester ];
+    maintainers = with maintainers; [ elohmeier vdemeester techknowlogick ];
     license = with licenses; if enableUnfree then unfreeRedistributable else asl20;
     description = "Continuous Integration platform built on container technology";
   };