6 , runc # Default container runtime
8 , crun # Container runtime (default with cgroups v2 for podman/buildah)
9 , conmon # Container runtime monitor
10 , util-linux # nsenter
15 binPath = lib.makeBinPath ([
24 in runCommand cri-o-unwrapped.name {
25 name = "${cri-o-unwrapped.pname}-wrapper-${cri-o-unwrapped.version}";
26 inherit (cri-o-unwrapped) pname version passthru;
28 preferLocalBuild = true;
30 meta = builtins.removeAttrs cri-o-unwrapped.meta [ "outputsToInstall" ];
42 ln -s ${cri-o-unwrapped.man} $man
45 ln -s ${cri-o-unwrapped}/etc $out/etc
46 ln -s ${cri-o-unwrapped}/share $out/share
48 for p in ${cri-o-unwrapped}/bin/*; do
49 makeWrapper $p $out/bin/''${p##*/} \
50 --prefix PATH : ${binPath}