···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 ];
···4343 I). It is a dependency of the C++ ABI library, and sometimes is a
4444 dependency of other runtimes.
4545 '';
4646+ broken = true; # TODO: gnu-install-dirs.patch fails to apply
4647 };
4748}
···5050 # "All of the code is dual licensed under the MIT license and the UIUC
5151 # License (a BSD-like license)":
5252 license = with lib.licenses; [ mit ncsa ];
5353+ broken = true; # TODO: gnu-install-dirs.patch fails to apply
5354 };
5455}