humble: moveit-kinematics: add missing moveit-ros-planning dep

This was added upstream in 2.7.2 but this has not been released for
humble.
This commit is contained in:
Ben Wolsieffer 2024-03-04 21:13:14 -05:00
parent c479bc18d7
commit fc2608672e

View file

@ -94,6 +94,14 @@ in with lib; {
};
};
moveit-kinematics = rosSuper.moveit-kinematics.overrideAttrs ({
propagatedBuildInputs ? [], ...
}: {
# Added upstream in 2.7.2
# https://github.com/ros-planning/moveit2/pull/2109
propagatedBuildInputs = propagatedBuildInputs ++ [ rosSelf.moveit-ros-planning ];
});
plotjuggler-ros = rosSuper.plotjuggler-ros.overrideAttrs ({
patches ? [], nativeBuildInputs ? [], ...
}: {