1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2020-07-23 02:03:06 +01:00
{ stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-07-01 10:02:04 +01:00
buildGoModule rec {
2019-07-01 10:02:04 +01:00
pname = "kube3d";
2020-08-22 11:33:58 +01:00
version = "3.0.1";
2020-07-22 23:22:39 +01:00
k3sVersion = "1.18.6-k3s1";
2019-07-01 10:02:04 +01:00
2020-07-22 23:22:39 +01:00
excludedPackages = ''tools'';
2019-07-01 10:02:04 +01:00
src = fetchFromGitHub {
owner = "rancher";
repo = "k3d";
rev = "v${version}";
2020-08-22 11:33:58 +01:00
sha256 = "1l6mh0dpf2bw9sxpn14iivv3pr8mj4favzx2hhn8k1j71cm1w4rj";
2019-07-01 10:02:04 +01:00
};
buildFlagsArray = ''
-ldflags=
-w -s
-X github.com/rancher/k3d/v3/version.Version=v${version}
2020-07-22 23:22:39 +01:00
-X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}
'';
2020-07-23 02:03:06 +01:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash zsh; do
$out/bin/k3d completion $shell > k3d.$shell
installShellCompletion k3d.$shell
done
'';
vendorSha256 = null;
2019-07-01 10:02:04 +01:00
doCheck = false;
2019-07-01 10:02:04 +01: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 10:24:41 +00:00
maintainers = with maintainers; [ kuznero jlesquembre ngerstle ];
2019-07-01 10:02:04 +01:00
};
}