1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

Override to use SIP 4 by default

This commit is contained in:
Ben Wolsieffer 2021-05-29 19:55:01 -04:00
parent 8ce05c7de3
commit bc71b936bf

View file

@ -35,9 +35,15 @@ self: super: with super.lib; let
rosinstall-generator = pySelf.callPackage ./rosinstall-generator { };
rospkg = pySelf.callPackage ./rospkg { };
# These overrides have to be done here (rather than in rosPackages)
# because packageOverrides doesn't compose
# ROS packages are generally transitioning away from SIP, so they usually
# aren't compatible with the latest SIP. This situation is somewhat in
# flux, so it is easier to do it here than in rosdep.
sip = pySelf.sip_4;
} // optionalAttrs pySuper.isPy3k {
# This has to be done here (rather than in rosPackages) because
# packageOverrides doesn't compose
wxPython = pySelf.wxPython_4_0;
};
});