3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/kube3d/default.nix

54 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-07-01 10:02:04 +01:00
let
k3sVersion = "1.20.0-k3s2";
in
buildGoModule rec {
2019-07-01 10:02:04 +01:00
pname = "kube3d";
2020-12-07 12:53:17 +00:00
version = "3.4.0";
2019-07-01 10:02:04 +01:00
excludedPackages = "tools";
2019-07-01 10:02:04 +01:00
src = fetchFromGitHub {
owner = "rancher";
repo = "k3d";
rev = "v${version}";
2020-12-07 12:53:17 +00:00
sha256 = "1fisbzv786n841pagy7zbanll7k1g5ib805j9azs2s30cfhvi08b";
2019-07-01 10:02:04 +01:00
};
vendorSha256 = null;
2020-07-23 02:03:06 +01:00
nativeBuildInputs = [ installShellFiles ];
buildFlagsArray = [
"-ldflags="
"-w"
"-s"
"-X github.com/rancher/k3d/v3/version.Version=v${version}"
"-X github.com/rancher/k3d/v3/version.K3sVersion=v${k3sVersion}"
];
doCheck = false;
2020-07-23 02:03:06 +01:00
postInstall = ''
installShellCompletion --cmd k3d \
--bash <($out/bin/k3d completion bash) \
--fish <($out/bin/k3d completion fish) \
--zsh <($out/bin/k3d completion zsh)
2020-07-23 02:03:06 +01:00
'';
meta = with lib; {
2019-07-01 10:02:04 +01:00
homepage = "https://github.com/rancher/k3d";
description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container - k3d";
longDescription = ''
k3s is the lightweight Kubernetes distribution by Rancher: rancher/k3s
k3d creates containerized k3s clusters. This means, that you can spin up a
multi-node k3s cluster on a single machine using docker.
'';
2019-07-01 10:02:04 +01:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ];
2019-07-01 10:02:04 +01:00
};
}