nixpkgs/pkgs/tools/virtualization/cri-tools/default.nix
Sascha Grunert 0ef5f787de
cri-tools: 1.29.0 -> 1.30.0
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2024-04-18 14:38:58 +02:00

48 lines
1.0 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "cri-tools";
version = "1.30.0";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
rev = "v${version}";
hash = "sha256-MuyXcdV29sLn9Vt0WE31nXtY9ofjEC0b5zSrmGXR0mw=";
};
vendorHash = null;
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
buildPhase = ''
runHook preBuild
make binaries VERSION=${version}
runHook postBuild
'';
installPhase = ''
runHook preInstall
make install BINDIR=$out/bin
for shell in bash fish zsh; do
$out/bin/crictl completion $shell > crictl.$shell
installShellCompletion crictl.$shell
done
runHook postInstall
'';
meta = with lib; {
description = "CLI and validation tools for Kubelet Container Runtime Interface (CRI)";
homepage = "https://github.com/kubernetes-sigs/cri-tools";
license = licenses.asl20;
maintainers = with maintainers; [ ] ++ teams.podman.members;
};
}