summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kube3d
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-08-26 09:41:39 +0100
committer06kellyjac <dev@j-k.io>2021-08-26 09:41:39 +0100
commita6adf3beab12cd5ec36226aa865fcbaec08a3ae6 (patch)
treec3f9d968388261e653c1a6b0c4966e788d32cb35 /pkgs/applications/networking/cluster/kube3d
parent612a8fa189dd1a9499d1c12d2b0d0bc3cf5b8969 (diff)
downloadnixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.tar
nixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.tar.gz
nixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.tar.bz2
nixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.tar.lz
nixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.tar.xz
nixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.tar.zst
nixpkgs-a6adf3beab12cd5ec36226aa865fcbaec08a3ae6.zip
kube3d: 4.4.7 -> 4.4.8
Diffstat (limited to 'pkgs/applications/networking/cluster/kube3d')
-rw-r--r--pkgs/applications/networking/cluster/kube3d/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix
index 3652405194f..e37ba9e73fb 100644
--- a/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -1,14 +1,14 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.6-k3s1" }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.21.3-k3s1" }:
 
 buildGoModule rec {
   pname = "kube3d";
-  version = "4.4.7";
+  version = "4.4.8";
 
   src = fetchFromGitHub {
     owner = "rancher";
     repo = "k3d";
     rev = "v${version}";
-    sha256 = "sha256-S1vHmXUCP1ayPo3vvHAbNCqNm1ueJ0jE4NUBvg5P3MU=";
+    sha256 = "sha256-PdbAkiua9AdcNDCpu4UILsmAz0nb4nLjahYomGSHqnc=";
   };
 
   vendorSha256 = null;
@@ -17,10 +17,9 @@ buildGoModule rec {
 
   excludedPackages = "\\(tools\\|docgen\\)";
 
-  ldflags = let t = "github.com/rancher/k3d/v4/version"; in
-    [
-      "-s" "-w" "-X ${t}.Version=v${version}" "-X ${t}.K3sVersion=v${k3sVersion}"
-    ];
+  ldflags =
+    let t = "github.com/rancher/k3d/v4/version"; in
+    [ "-s" "-w" "-X ${t}.Version=v${version}" "-X ${t}.K3sVersion=v${k3sVersion}" ];
 
   doCheck = false;