nixpkgs/pkgs/development/tools/kind/default.nix

43 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-10-06 12:43:21 +01:00
with lib;
2018-10-06 12:43:21 +01:00
buildGoModule rec {
pname = "kind";
2021-05-28 22:20:38 +01:00
version = "0.11.1";
2018-10-06 12:43:21 +01:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
2021-05-28 22:20:38 +01:00
sha256 = "sha256-pjg52ONseKNw06EOBzD6Elge+Cz+C3llPvjJPHkn1cw=";
2018-10-06 12:43:21 +01:00
};
patches = [
# fix kernel module path used by kind
./kernel-module-path.patch
];
2021-05-28 22:20:38 +01:00
vendorSha256 = "sha256-HiVdekSZrC/RkMSvcwm1mv6AE4bA5kayUsMdVCbckiE=";
doCheck = false;
2019-09-09 12:12:59 +01:00
subPackages = [ "." ];
2018-10-06 12:43:21 +01:00
2019-12-12 23:13:24 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash fish zsh; do
$out/bin/kind completion $shell > kind.$shell
2020-04-26 04:16:54 +01:00
installShellCompletion kind.$shell
done
2019-12-12 23:13:24 +00:00
'';
2018-10-06 12:43:21 +01:00
meta = {
description = "Kubernetes IN Docker - local clusters for testing Kubernetes";
homepage = "https://github.com/kubernetes-sigs/kind";
2018-12-13 20:32:59 +00:00
maintainers = with maintainers; [ offline rawkode ];
license = lib.licenses.asl20;
platforms = platforms.unix;
2018-10-06 12:43:21 +01:00
};
}