cri-o: 1.31.3 -> 1.32.0 (#377510)

This commit is contained in:
jopejoe1
2025-03-03 21:57:15 +00:00
committed by GitHub
@@ -12,17 +12,18 @@
lvm2,
pkg-config,
nixosTests,
go-md2man,
}:
buildGoModule rec {
pname = "cri-o";
version = "1.31.3";
version = "1.32.0";
src = fetchFromGitHub {
owner = "cri-o";
repo = "cri-o";
rev = "v${version}";
hash = "sha256-uoB5v+dl3895sW597f/Y49E2BJvy89871xu/rqWd7kw=";
hash = "sha256-bjZjmgIYFroyUdBeUbrRz7dD0yQOqc9TDsGxvle1PnE=";
};
vendorHash = null;
@@ -34,6 +35,7 @@ buildGoModule rec {
];
nativeBuildInputs = [
installShellFiles
go-md2man
pkg-config
];
@@ -54,6 +56,7 @@ buildGoModule rec {
BUILDTAGS = "apparmor seccomp selinux containers_image_openpgp containers_image_ostree_stub";
buildPhase = ''
runHook preBuild
sed -i 's;\thack/;\tbash ./hack/;g' Makefile
make binaries docs BUILDTAGS="$BUILDTAGS"
runHook postBuild
'';