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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-10-06 11:43:21 +00:00
buildGoModule rec {
pname = "kind";
2023-06-18 02:31:49 +00:00
version = "0.20.0";
2018-10-06 11:43:21 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
2023-06-18 02:31:49 +00:00
sha256 = "sha256-5yDoxrsnmz8N0Y35juItLtyclTz+pSb75B1P716XPxU=";
2018-10-06 11:43:21 +00:00
};
patches = [
# fix kernel module path used by kind
./kernel-module-path.patch
];
2023-05-21 02:44:47 +00:00
vendorHash = "sha256-J/sJd2LLMBr53Z3sGrWgnWA8Ry+XqqfCEObqFyUD96g=";
CGO_ENABLED = 0;
GOFLAGS = [ "-trimpath" ];
2023-10-20 21:32:27 +00:00
ldflags = [ "-buildid=" "-w" ];
doCheck = false;
2019-09-09 11:12:59 +00:00
subPackages = [ "." ];
2018-10-06 11:43:21 +00: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 03:16:54 +00:00
installShellCompletion kind.$shell
done
2019-12-12 23:13:24 +00:00
'';
meta = with lib; {
2018-10-06 11:43:21 +00:00
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 = licenses.asl20;
2018-10-06 11:43:21 +00:00
};
}