Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rosbag2-bag-v2-plugins #114

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions distros/distro-overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,22 @@ let
'';
});

ros1-rosbag-storage-vendor = rosSuper.ros1-rosbag-storage-vendor.overrideAttrs ({
buildInputs ? [], propagatedBuildInputs ? [], ...
}: with self.rosPackages.noetic; {
# Depends on ROS 1 packages that can't be specified in package.xml
buildInputs = buildInputs ++ [ roscpp ];
# Should be specified as build_export_depend
propagatedBuildInputs = propagatedBuildInputs ++ [ self.bzip2 roslz4 ];
});

rosbag2-bag-v2-plugins = rosSuper.rosbag2-bag-v2-plugins.overrideAttrs ({
buildInputs ? [], ...
}: with self.rosPackages.noetic; {
# Depends on ROS 1 packages that can't be specified in package.xml
buildInputs = buildInputs ++ [ roscpp ];
});

roscpp = patchBoostSignals rosSuper.roscpp;

rmw-implementation = rosSuper.rmw-implementation.overrideAttrs ({
Expand Down
5 changes: 5 additions & 0 deletions distros/foxy/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ rosSelf: rosSuper: with rosSelf.lib; {
sha256 = "0v6ks4hpxmakgymcfvafynla76gl3866grgwf4vjdsb4rsvr13vx";
};

ros1-rosbag-storage-vendor = patchVendorUrl rosSuper.ros1-rosbag-storage-vendor {
url = "https://github.com/ros/ros_comm/archive/669fbd32d2f92cc295f4b024fcb2f982fddec0f0.zip";
sha256 = "0phwk8imiy72xnizqj3y6vn5crjrcpr4qazhphv49r8zprirn6nj";
};

rviz-ogre-vendor = patchVendorUrl rosSuper.rviz-ogre-vendor {
url = "https://github.com/OGRECave/ogre/archive/v1.12.1.zip";
sha256 = "1iv6k0dwdzg5nnzw2mcgcl663q4f7p2kj7nhs8afnsikrzxxgsi4";
Expand Down
5 changes: 5 additions & 0 deletions distros/galactic/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ rosSelf: rosSuper: with rosSelf.lib; {
sha256 = "0145vj9hrhb9qjp6jfvw0d1qc31lbb103xzxscr0yms0asv4sl4p";
};

ros1-rosbag-storage-vendor = patchVendorUrl rosSuper.ros1-rosbag-storage-vendor {
url = "https://github.com/ros/ros_comm/archive/08fcc096f4e822b56bfb5a30b0a09ec45f0802aa.zip";
sha256 = "0av26k0rxvlg839snpcbvdcd0gy6yp6wm74wmvp32n9slfkcvcd7";
};

rviz-ogre-vendor = patchVendorUrl rosSuper.rviz-ogre-vendor {
url = "https://github.com/OGRECave/ogre/archive/v1.12.1.zip";
sha256 = "1iv6k0dwdzg5nnzw2mcgcl663q4f7p2kj7nhs8afnsikrzxxgsi4";
Expand Down