containerd: 1.5.4 -> 1.5.5

This commit is contained in:
R. RyanTM 2021-07-30 06:52:49 +00:00 committed by zowoq
parent 34b37ad59c
commit b58b4a85c4

View file

@ -10,7 +10,7 @@
buildGoModule rec { buildGoModule rec {
pname = "containerd"; pname = "containerd";
version = "1.5.4"; version = "1.5.5";
outputs = [ "out" "man" ]; outputs = [ "out" "man" ];
@ -18,7 +18,7 @@ buildGoModule rec {
owner = "containerd"; owner = "containerd";
repo = "containerd"; repo = "containerd";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-VV1cxA8tDRiPDxKV8OGu3T7sgutmyL+VPNqTeFcVjJA="; sha256 = "sha256-6mDTTXHpXBcKOcT+VrGgt6HJzvTeKgJ0ItJ+IjCTJxk=";
}; };
vendorSha256 = null; vendorSha256 = null;
@ -32,15 +32,19 @@ buildGoModule rec {
BUILDTAGS = lib.optionals (btrfs-progs == null) [ "no_btrfs" ]; BUILDTAGS = lib.optionals (btrfs-progs == null) [ "no_btrfs" ];
buildPhase = '' buildPhase = ''
runHook preBuild
patchShebangs . patchShebangs .
make binaries man $buildFlags make binaries man $buildFlags
runHook postBuild
''; '';
installPhase = '' installPhase = ''
runHook preInstall
install -Dm555 bin/* -t $out/bin install -Dm555 bin/* -t $out/bin
installManPage man/*.[1-9] installManPage man/*.[1-9]
installShellCompletion --bash contrib/autocomplete/ctr installShellCompletion --bash contrib/autocomplete/ctr
installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete
runHook postInstall
''; '';
passthru.tests = { inherit (nixosTests) docker; }; passthru.tests = { inherit (nixosTests) docker; };