1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros.nix

26 lines
554 B
Nix
Raw Normal View History

2019-04-16 15:02:56 -04:00
# Define all supported ROS distros
self: super: {
rosPackages = rec {
kinetic = import ./distro-overlay.nix {
distro = "kinetic";
python = self.python2;
} self super;
kineticPython3 = import ./distro-overlay.nix {
distro = "kinetic";
python = self.python3;
} self super;
lunar = import ./distro-overlay.nix {
distro = "lunar";
python = self.python2;
} self super;
melodic = import ./distro-overlay.nix {
distro = "melodic";
python = self.python3;
} self super;
};
}