summary refs log tree commit diff
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2022-03-28 09:27:40 +0100
committerGitHub <noreply@github.com>2022-03-28 09:27:40 +0100
commite801b166e5d80843c2dd9a27610349bd02a5222d (patch)
treea91b8de2412435e670d3fd934f7e249015863606
parent1411b2057646dce25d926cededb189d5bd87c46f (diff)
parent49e412b04614d8a5f1b4c91a166efdfdecd91cbb (diff)
downloadnixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.tar
nixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.tar.gz
nixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.tar.bz2
nixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.tar.lz
nixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.tar.xz
nixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.tar.zst
nixpkgs-e801b166e5d80843c2dd9a27610349bd02a5222d.zip
Merge pull request #166038 from bryanasdev000/rancher-264
rancher: 2.6.0 -> 2.6.4
-rw-r--r--pkgs/applications/networking/cluster/rancher/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/rancher/default.nix b/pkgs/applications/networking/cluster/rancher/default.nix
index 7c219725d7c..3ee09b14ce9 100644
--- a/pkgs/applications/networking/cluster/rancher/default.nix
+++ b/pkgs/applications/networking/cluster/rancher/default.nix
@@ -1,14 +1,14 @@
 { lib, buildGoModule, fetchFromGitHub }:
 
 buildGoModule rec {
-  pname = "rancher-cli";
-  version = "2.6.0";
+  pname = "rancher";
+  version = "2.6.4";
 
   src = fetchFromGitHub {
     owner  = "rancher";
     repo   = "cli";
     rev    = "v${version}";
-    sha256 = "sha256-RfhcTo10nkHmKGwmS8WdjBioZhDIGSQ9vPPOv3Wg0Y4=";
+    sha256 = "sha256-5ceyScsCidJpHGfwhsq7/hDd3CClx29cD5Cdc1PSxTU=";
   };
 
   ldflags = [
@@ -25,8 +25,6 @@ buildGoModule rec {
     mv $out/bin/cli $out/bin/rancher
   '';
 
-  doCheck = true;
-
   doInstallCheck = true;
   installCheckPhase = ''
     $out/bin/rancher | grep ${version} > /dev/null