nix-ros-overlay/distros/default.nix

48 lines
1.1 KiB
Nix
Raw Normal View History

2019-04-16 15:02:56 -04:00
# Define all supported ROS distros
self: super: {
rosPackages = rec {
lib = super.lib // import ../lib { inherit self; };
2019-12-06 17:18:47 -05:00
2019-04-16 15:02:56 -04:00
kinetic = import ./distro-overlay.nix {
distro = "kinetic";
python = self.python2;
} self super;
kineticPython3 = import ./distro-overlay.nix {
distro = "kinetic";
python = self.python3;
} self super;
melodic = import ./distro-overlay.nix {
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;
noetic = import ./distro-overlay.nix {
distro = "noetic";
python = self.python3;
} self super;
dashing = import ./distro-overlay.nix {
distro = "dashing";
python = self.python3;
} self super;
2019-12-09 00:50:44 -05:00
eloquent = import ./distro-overlay.nix {
distro = "eloquent";
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;
2019-04-16 15:02:56 -04:00
};
}