mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
42 lines
969 B
Nix
42 lines
969 B
Nix
# Define all supported ROS distros
|
|
|
|
self: super: {
|
|
rosPackages = rec {
|
|
lib = super.lib // import ../lib { inherit lib self; };
|
|
|
|
melodic = import ./distro-overlay.nix {
|
|
distro = "melodic";
|
|
python = self.python2;
|
|
} self super;
|
|
|
|
melodicPython3 = import ./distro-overlay.nix {
|
|
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;
|
|
|
|
eloquent = import ./distro-overlay.nix {
|
|
distro = "eloquent";
|
|
python = self.python3;
|
|
} self super;
|
|
|
|
foxy = import ./distro-overlay.nix {
|
|
distro = "foxy";
|
|
python = self.python3;
|
|
} self super;
|
|
|
|
galactic = import ./distro-overlay.nix {
|
|
distro = "galactic";
|
|
python = self.python3;
|
|
} self super;
|
|
};
|
|
}
|