2020-05-23 15:25:54 -04:00
|
|
|
# Top level package set
|
|
|
|
self:
|
|
|
|
# Distro package set
|
|
|
|
rosSelf: rosSuper: with rosSelf.lib; {
|
2021-05-30 13:12:43 -04:00
|
|
|
eigenpy = rosSuper.eigenpy.overrideAttrs ({
|
2021-09-01 18:27:29 -04:00
|
|
|
cmakeFlags ? [], ...
|
2021-05-30 13:12:43 -04:00
|
|
|
}: {
|
|
|
|
cmakeFlags = cmakeFlags ++ [ "-DPYTHON_EXECUTABLE=${rosSelf.python.interpreter}" ];
|
|
|
|
});
|
|
|
|
|
2020-07-05 19:25:17 -04:00
|
|
|
gazebo = self.gazebo_11;
|
2020-06-13 14:13:22 -04:00
|
|
|
|
|
|
|
libphidget22 = patchVendorUrl rosSuper.libphidget22 {
|
2023-04-02 12:31:44 -04:00
|
|
|
url = "https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22/libphidget22-1.13.20230224.tar.gz";
|
|
|
|
sha256 = "sha256-HQeVEQUX6xjIBkcoh8r8hh3QtqHBBFJGxVW8R/a9d+M=";
|
2020-06-13 14:13:22 -04:00
|
|
|
};
|
2020-06-13 16:37:27 -04:00
|
|
|
|
2022-04-19 20:13:42 -04:00
|
|
|
mapviz = rosSuper.mapviz.overrideAttrs ({
|
|
|
|
patches ? [], ...
|
|
|
|
}: {
|
|
|
|
# Fix linking to GLUT with CMake 3.22
|
|
|
|
patches = patches ++ [ (self.fetchpatch {
|
|
|
|
url = "https://github.com/swri-robotics/mapviz/commit/b3c8e19bc1b7e1d2478c0b13a848d7caf40b4e5e.patch";
|
|
|
|
sha256 = "sha256-abjP9Pn3v+aLZBOI0KiGihHgt2WLadDvdaKVyk2IlPY=";
|
|
|
|
stripLen = 1;
|
|
|
|
}) ];
|
|
|
|
});
|
|
|
|
|
2023-05-02 17:16:27 -04:00
|
|
|
pcl-ros = rosSuper.pcl-ros.overrideAttrs ({
|
|
|
|
patches ? [], ...
|
|
|
|
}: {
|
|
|
|
patches = patches ++ [
|
|
|
|
# Fix compatibility with PCL 1.13
|
|
|
|
(self.fetchpatch {
|
|
|
|
url = "https://github.com/ros-perception/perception_pcl/commit/eb8f009ca519fc6b5651ba3a125fe5ae04f67bb8.patch";
|
|
|
|
hash = "sha256-tEp4/1loFpjHKpNYuDz32iSzXJdrXGWmfJuBkO8d95w=";
|
|
|
|
stripLen = 1;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2021-05-29 18:17:19 -04:00
|
|
|
pybind11-catkin = patchVendorUrl rosSuper.pybind11-catkin {
|
2023-04-02 12:31:44 -04:00
|
|
|
url = "https://github.com/pybind/pybind11/archive/v2.10.3.zip";
|
|
|
|
sha256 = "sha256-IBlmph3IJvGxh5okozF6HskhSpGMjrA1vi8ww+nPvcs=";
|
2021-05-29 18:17:19 -04:00
|
|
|
};
|
|
|
|
|
2023-06-18 21:53:51 -04:00
|
|
|
rosconsole = rosSuper.rosconsole.overrideAttrs ({
|
|
|
|
patches ? [], ...
|
|
|
|
}: {
|
|
|
|
# Support liblog4cxx 0.13
|
|
|
|
# https://github.com/ros/rosconsole/pull/58
|
|
|
|
patches = patches ++ [ (self.fetchpatch {
|
|
|
|
url = "https://github.com/ros/rosconsole/pull/58.patch";
|
|
|
|
hash = "sha256-Rg+WCPak5sxBqdQ/QR9eboyX921PZTjk3/PuH5mz96U=";
|
|
|
|
}) ];
|
|
|
|
});
|
|
|
|
|
2020-06-13 18:33:26 -04:00
|
|
|
rosfmt = patchVendorUrl rosSuper.rosfmt {
|
2021-01-23 16:45:12 -05:00
|
|
|
url = "https://github.com/fmtlib/fmt/releases/download/7.1.2/fmt-7.1.2.zip";
|
|
|
|
sha256 = "19qfd19mvzg4awqbh5x10m8riyyy0dbpadpidp3mrs81gjmnhsad";
|
2020-06-13 18:33:26 -04:00
|
|
|
};
|
2021-11-24 18:21:34 -05:00
|
|
|
|
2021-11-25 13:00:06 -05:00
|
|
|
rqt-graph = rosSuper.rqt-graph.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_graph/rqt_graph"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2021-11-24 18:21:34 -05:00
|
|
|
rqt-gui = rosSuper.rqt-gui.overrideAttrs ({
|
2022-05-07 17:59:54 -04:00
|
|
|
postFixup ? "", ...
|
2021-11-24 18:21:34 -05:00
|
|
|
}: {
|
2021-11-25 13:00:06 -05:00
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_gui/rqt_gui"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2022-05-07 17:59:54 -04:00
|
|
|
rqt-image-view = rosSuper.rqt-image-view.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/bin/rqt_image_view"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2021-11-25 13:00:06 -05:00
|
|
|
rqt-msg = rosSuper.rqt-msg.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_msg/rqt_msg"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-plot = rosSuper.rqt-plot.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_plot/rqt_plot"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-publisher = rosSuper.rqt-publisher.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_publisher/rqt_publisher"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-py-console = rosSuper.rqt-py-console.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_py_console/rqt_py_console"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-reconfigure = rosSuper.rqt-reconfigure.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_reconfigure/rqt_reconfigure"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-service-caller = rosSuper.rqt-service-caller.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_service_caller/rqt_service_caller"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-shell = rosSuper.rqt-shell.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_shell/rqt_shell"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-srv = rosSuper.rqt-srv.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_srv/rqt_srv"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-top = rosSuper.rqt-top.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_top/rqt_top"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
|
|
|
rqt-topic = rosSuper.rqt-topic.overrideAttrs ({
|
|
|
|
postFixup ? "", ...
|
|
|
|
}: {
|
|
|
|
postFixup = postFixup + ''
|
|
|
|
wrapQtApp "$out/lib/rqt_topic/rqt_topic"
|
|
|
|
'';
|
2021-11-24 18:21:34 -05:00
|
|
|
});
|
2020-05-23 15:25:54 -04:00
|
|
|
}
|