2019-04-16 15:02:56 -04:00
|
|
|
# Define all supported ROS distros
|
|
|
|
|
|
|
|
self: super: {
|
|
|
|
rosPackages = rec {
|
2020-08-02 15:05:33 -04:00
|
|
|
lib = super.lib // import ../lib { inherit lib self; };
|
2019-12-06 17:18:47 -05:00
|
|
|
|
2019-04-16 15:02:56 -04:00
|
|
|
melodic = import ./distro-overlay.nix {
|
2019-05-19 02:36:22 -04:00
|
|
|
distro = "melodic";
|
|
|
|
python = self.python2;
|
|
|
|
} self super;
|
|
|
|
|
|
|
|
melodicPython3 = import ./distro-overlay.nix {
|
2019-04-16 15:02:56 -04:00
|
|
|
distro = "melodic";
|
|
|
|
python = self.python3;
|
|
|
|
} self super;
|
2019-09-05 22:43:33 -04:00
|
|
|
|
2020-05-23 15:25:54 -04:00
|
|
|
noetic = import ./distro-overlay.nix {
|
|
|
|
distro = "noetic";
|
|
|
|
python = self.python3;
|
|
|
|
} self super;
|
|
|
|
|
2020-06-12 20:47:02 -04:00
|
|
|
foxy = import ./distro-overlay.nix {
|
|
|
|
distro = "foxy";
|
|
|
|
python = self.python3;
|
|
|
|
} self super;
|
2021-05-28 20:55:57 -04:00
|
|
|
|
|
|
|
galactic = import ./distro-overlay.nix {
|
|
|
|
distro = "galactic";
|
|
|
|
python = self.python3;
|
|
|
|
} self super;
|
2022-06-11 13:12:44 -04:00
|
|
|
|
|
|
|
humble = import ./distro-overlay.nix {
|
|
|
|
distro = "humble";
|
|
|
|
python = self.python3;
|
|
|
|
} self super;
|
2019-04-16 15:02:56 -04:00
|
|
|
};
|
|
|
|
}
|