Skip to content

Commit

Permalink
noetic: moveit-core: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
lopsided98 committed Aug 2, 2023
1 parent efb6c01 commit ae882f3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions distros/noetic/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ rosSelf: rosSuper: with rosSelf.lib; {
}) ];
});

moveit-core = rosSuper.moveit-core.overrideAttrs ({
buildInputs ? [], patches ? [], ...
}: {
buildInputs = buildInputs ++ [ rosSelf.angles ];
# Add angles dependency to CMakeLists.txt and packages.xml
patches = patches ++ [ (self.fetchpatch {
url = "https://github.com/ros-planning/moveit/commit/ea73996b7ff9736504ea012dbdea9e81a80a561c.patch";
hash = "sha256-ZduyFhnl5WH07TEkfF1DwTUBZNd5CbZ3wHN7JHJb1XI=";
stripLen = 1;
}) ];
});

pcl-ros = rosSuper.pcl-ros.overrideAttrs ({
patches ? [], ...
}: {
Expand Down

0 comments on commit ae882f3

Please sign in to comment.