nixpkgs/pkgs/tools/virtualization/cri-tools/default.nix
Sascha Grunert 1f74e97fe8 cri-tools: 1.18.0 -> 1.19.0
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-08-28 21:11:46 +10:00

44 lines
939 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "cri-tools";
version = "1.19.0";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
rev = "v${version}";
sha256 = "0dx21ws4nzzizzjb0g172fzvjgwck88ikr5c2av08ii06rys1567";
};
vendorSha256 = null;
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
buildPhase = ''
make binaries VERSION=${version}
'';
installPhase = ''
make install BINDIR=$out/bin
for shell in bash fish zsh; do
$out/bin/crictl completion $shell > crictl.$shell
installShellCompletion crictl.$shell
done
'';
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;
};
}