2022-12-09T11:26:05 containerd 1.6.10 -> 1.6.12 https://repology.org/metapackage/containerd/versions 2022-12-09T11:26:07 attrpath: containerd 2022-12-09T11:26:07 Checking auto update branch... 2022-12-09T11:26:07 No auto update branch exists 2022-12-09T11:26:07 Old version 1.6.10" not present in master derivation file with contents: { lib , fetchFromGitHub , buildGoModule , btrfs-progs , go-md2man , installShellFiles , util-linux , nixosTests }: buildGoModule rec { pname = "containerd"; version = "1.6.12"; src = fetchFromGitHub { owner = "containerd"; repo = "containerd"; rev = "v${version}"; sha256 = "sha256-02eg2RNEim47Q3TyTLYc0IdaBJcOf89qTab8GV8fDgA="; }; vendorSha256 = null; nativeBuildInputs = [ go-md2man installShellFiles util-linux ]; buildInputs = [ btrfs-progs ]; BUILDTAGS = lib.optionals (btrfs-progs == null) [ "no_btrfs" ]; buildPhase = '' runHook preBuild patchShebangs . make binaries "VERSION=v${version}" "REVISION=${src.rev}" runHook postBuild ''; installPhase = '' runHook preInstall install -Dm555 bin/* -t $out/bin installShellCompletion --bash contrib/autocomplete/ctr installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete runHook postInstall ''; passthru.tests = { inherit (nixosTests) docker; }; meta = with lib; { homepage = "https://containerd.io/"; description = "A daemon to control runC"; license = licenses.asl20; maintainers = with maintainers; [ offline vdemeester endocrimes zowoq ]; platforms = platforms.linux; }; }