···33, makeWrapper
44, symlinkJoin
55, lib
66+, stdenv
67, extraPackages ? []
78, podman # Docker compat
89, runc # Default container runtime
···1516, iptables
1617, iproute2
1718, catatonit
1919+, gvproxy
1820}:
19212022# do not add qemu to this wrapper, store paths get written to the podman vm config and break when GCed
···2527 podman = podman-unwrapped;
26282729 binPath = lib.makeBinPath ([
3030+ ] ++ lib.optionals stdenv.isLinux [
2831 runc
2932 crun
3033 conmon
···40434144 # this only works for some binaries, others may need to be be added to `binPath` or in the modules
4245 paths = [
4646+ gvproxy
4747+ ] ++ lib.optionals stdenv.isLinux [
4348 catatonit # added here for the pause image and also set in `containersConf` for `init_path`
4449 podman.rootlessport
4550 ];