13 src = fetchFromGitHub {
14 owner = "kubernetes-sigs";
17 hash = "sha256-wdtsx5DIg+65VRRUPai5d8Tk/zQ4MhVjXNFKK4NCBFs=";
24 nativeBuildInputs = [ installShellFiles ];
28 make binaries VERSION=${version}
35 make install BINDIR=$out/bin
37 + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
38 for shell in bash fish zsh; do
39 installShellCompletion --cmd crictl \
40 --$shell <($out/bin/crictl completion $shell)
48 description = "CLI and validation tools for Kubelet Container Runtime Interface (CRI)";
49 homepage = "https://github.com/kubernetes-sigs/cri-tools";
50 license = licenses.asl20;
51 maintainers = with maintainers; [ ] ++ teams.podman.members;