{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "kind"; version = "0.23.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "kubernetes-sigs"; repo = "kind"; hash = "sha256-S+kk3g/A1bio1v7zoXmvaTAYd0LBq5uip/9DvhkzZnM="; }; patches = [ # fix kernel module path used by kind ./kernel-module-path.patch ]; vendorHash = "sha256-YB2/MudoIVtTHU6FtvZOEhhxg5ss6OvENXOykPlQ12Y="; nativeBuildInputs = [ installShellFiles ]; subPackages = [ "." ]; CGO_ENABLED = 0; ldflags = [ "-s" "-w" ]; doCheck = false; postInstall = '' installShellCompletion --cmd kind \ --bash <($out/bin/kind completion bash) \ --fish <($out/bin/kind completion fish) \ --zsh <($out/bin/kind completion zsh) ''; meta = with lib; { description = "Kubernetes IN Docker - local clusters for testing Kubernetes"; homepage = "https://github.com/kubernetes-sigs/kind"; maintainers = with maintainers; [ offline rawkode ]; license = licenses.asl20; mainProgram = "kind"; }; }