summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/kube3d
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-04-20 11:11:45 +0100
committer06kellyjac <dev@j-k.io>2021-04-20 11:11:45 +0100
commit9d70d47a841d4d810e1e81e3693ced02283d9467 (patch)
tree11b662788e0baace7767367ffe7f5f915337e004 /pkgs/applications/networking/cluster/kube3d
parent865110942454456f0a627eef6f3d59c5c8e7b2eb (diff)
downloadnixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.tar
nixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.tar.gz
nixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.tar.bz2
nixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.tar.lz
nixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.tar.xz
nixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.tar.zst
nixpkgs-9d70d47a841d4d810e1e81e3693ced02283d9467.zip
kube3d: 4.4.1 -> 4.4.2
exclude docgen as we dont use it and it is breaking the build

> main module (github.com/rancher/k3d/v4) does not contain package
github.com/rancher/k3d/v4/docgen
Diffstat (limited to 'pkgs/applications/networking/cluster/kube3d')
-rw-r--r--pkgs/applications/networking/cluster/kube3d/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix
index d0aa1029d63..decb586045d 100644
--- a/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -1,22 +1,22 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.5-k3s1" }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles, k3sVersion ? "1.20.6-k3s1" }:
 
 buildGoModule rec {
   pname = "kube3d";
-  version = "4.4.1";
-
-  excludedPackages = "tools";
+  version = "4.4.2";
 
   src = fetchFromGitHub {
     owner = "rancher";
     repo = "k3d";
     rev = "v${version}";
-    sha256 = "sha256-u9P+7qNomamd4BkqWBxA6rDom0hF6t10QfDTjqOMGeE=";
+    sha256 = "sha256-6BDetNPWyAVZOsnCWs90HljVpfUlAytFDPQ/SqPxwgg=";
   };
 
   vendorSha256 = null;
 
   nativeBuildInputs = [ installShellFiles ];
 
+  excludedPackages = "\\(tools\\|docgen\\)";
+
   preBuild = let t = "github.com/rancher/k3d/v4/version"; in
     ''
       buildFlagsArray+=("-ldflags" "-s -w -X ${t}.Version=v${version} -X ${t}.K3sVersion=v${k3sVersion}")