2022-11-15T23:28:29 containerd 1.6.9 -> 1.6.10 https://github.com/containerd/containerd/releases 2022-11-15T23:28:31 attrpath: containerd 2022-11-15T23:28:32 Checking auto update branch... 2022-11-15T23:28:32 No auto update branch exists 2022-11-15T23:28:32 Old version 1.6.9" 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.10"; src = fetchFromGitHub { owner = "containerd"; repo = "containerd"; rev = "v${version}"; sha256 = "sha256-kz2UuWzVK5lu/d6K0LHauu2yhBF6Hl83P/a/HCCSObc="; }; 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; }; }