aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix26
1 files changed, 18 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix b/nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix
index c6ae0629d7c..0c1f452ea5b 100644
--- a/nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix
+++ b/nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix
@@ -1,28 +1,38 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "kube3d";
- version = "1.7.0";
- k3sVersion = "1.17.3-k3s1";
+ version = "3.0.1";
+ k3sVersion = "1.18.6-k3s1";
- goPackagePath = "github.com/rancher/k3d";
+ excludedPackages = ''tools'';
src = fetchFromGitHub {
owner = "rancher";
repo = "k3d";
rev = "v${version}";
- sha256 = "0aij2l7zmg4cxbw7pwf7ddc64di25hpjvbmp1madhz9q28rwfa9w";
+ sha256 = "1l6mh0dpf2bw9sxpn14iivv3pr8mj4favzx2hhn8k1j71cm1w4rj";
};
buildFlagsArray = ''
-ldflags=
-w -s
- -X github.com/rancher/k3d/version.Version=${version}
- -X github.com/rancher/k3d/version.K3sVersion=v${k3sVersion}
+ -X github.com/rancher/k3d/v3/version.Version=v${version}
+ -X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}
+ '';
+
+ nativeBuildInputs = [ installShellFiles ];
+ postInstall = ''
+ for shell in bash zsh; do
+ $out/bin/k3d completion $shell > k3d.$shell
+ installShellCompletion k3d.$shell
+ done
'';
vendorSha256 = null;
+ doCheck = false;
+
meta = with stdenv.lib; {
homepage = "https://github.com/rancher/k3d";
description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container";
@@ -30,4 +40,4 @@ buildGoModule rec {
platforms = platforms.linux;
maintainers = with maintainers; [ kuznero jlesquembre ngerstle ];
};
-} \ No newline at end of file
+}