2020-07-23 03:03:06 +02:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2019-07-01 11:02:04 +02:00
|
|
|
|
2019-09-30 23:37:37 +02:00
|
|
|
buildGoModule rec {
|
2019-07-01 11:02:04 +02:00
|
|
|
pname = "kube3d";
|
2020-09-25 20:20:05 +02:00
|
|
|
version = "3.0.2";
|
2020-07-23 00:22:39 +02:00
|
|
|
k3sVersion = "1.18.6-k3s1";
|
2019-07-01 11:02:04 +02:00
|
|
|
|
2020-07-23 00:22:39 +02:00
|
|
|
excludedPackages = ''tools'';
|
2019-07-01 11:02:04 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rancher";
|
|
|
|
repo = "k3d";
|
|
|
|
rev = "v${version}";
|
2020-09-25 20:20:05 +02:00
|
|
|
sha256 = "182n4kggwr6z75vsagfd0rl89ixcw5h13whf56jh4cd38dj8is5l";
|
2019-07-01 11:02:04 +02:00
|
|
|
};
|
|
|
|
|
2019-09-30 23:37:37 +02:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-w -s
|
2020-07-23 03:15:05 +02:00
|
|
|
-X github.com/rancher/k3d/v3/version.Version=v${version}
|
2020-07-23 00:22:39 +02:00
|
|
|
-X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}
|
2019-09-30 23:37:37 +02:00
|
|
|
'';
|
|
|
|
|
2020-07-23 03:03:06 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
|
|
for shell in bash zsh; do
|
|
|
|
$out/bin/k3d completion $shell > k3d.$shell
|
|
|
|
installShellCompletion k3d.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2020-05-01 03:59:00 +02:00
|
|
|
vendorSha256 = null;
|
2019-07-01 11:02:04 +02:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-07-01 11:02:04 +02:00
|
|
|
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";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2020-03-01 11:24:41 +01:00
|
|
|
maintainers = with maintainers; [ kuznero jlesquembre ngerstle ];
|
2019-07-01 11:02:04 +02:00
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|