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 {
|
2021-11-24 20:32:29 -05:00
|
|
|
url = "https://www.phidgets.com/downloads/phidget22/libraries/linux/libphidget22/libphidget22-1.7.20210816.tar.gz";
|
|
|
|
sha256 = "0ynyw672033psdy018sqzc6mv9yvfxyp43c5d6x1iqk9cz6p4hfk";
|
2020-06-13 14:13:22 -04:00
|
|
|
};
|
2020-06-13 16:37:27 -04:00
|
|
|
|
2021-05-29 18:17:19 -04:00
|
|
|
pybind11-catkin = patchVendorUrl rosSuper.pybind11-catkin {
|
|
|
|
url = "https://github.com/pybind/pybind11/archive/v2.5.0.zip";
|
|
|
|
sha256 = "080mss10aadal8sk3bib2dr2ygx6hmxn2g92qsq42v3zhchz2n8q";
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
rqt-gui = rosSuper.rqt-gui.overrideAttrs ({
|
|
|
|
patches ? [], ...
|
|
|
|
}: {
|
|
|
|
# Fix usage of removed ElementTree.getiterator() method
|
|
|
|
# https://github.com/ros-visualization/rqt/pull/241
|
|
|
|
patches = patches ++ [ (self.fetchpatch {
|
|
|
|
url = "https://github.com/ros-visualization/rqt/commit/aaf8da523b32307ad906e48fa977eff1779b0154.patch";
|
|
|
|
stripLen = 1;
|
|
|
|
sha256 = "1p2rh2l74plq5aa319mxgi0hqm2if0qk3mr5fz8zif1zpgz4wvh3";
|
|
|
|
}) ];
|
|
|
|
});
|
2020-05-23 15:25:54 -04:00
|
|
|
}
|