cri-tools 1.26.0 -> 1.26.1 https://repology.org/metapackage/cri-tools/versions attrpath: cri-tools Checking auto update branch... No auto update branch exists Old version 1.26.0" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "cri-tools"; version = "1.26.1"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = pname; rev = "v${version}"; sha256 = "sha256-jJhHlqnc7wDsc6nn5CTZMnaZpUJrEDkGzyvQ2EoX4GE="; }; vendorSha256 = 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; }; }