1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/default.nix
Ben Wolsieffer bb7b9e3723 Add recurseForDerivations.
Closes #172
2022-07-04 21:01:47 -04:00

38 lines
881 B
Nix

# Define all supported ROS distros
self: super: {
rosPackages = rec {
recurseForDerivations = true;
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;
foxy = import ./distro-overlay.nix {
distro = "foxy";
python = self.python3;
} self super;
galactic = import ./distro-overlay.nix {
distro = "galactic";
python = self.python3;
} self super;
humble = import ./distro-overlay.nix {
distro = "humble";
python = self.python3;
} self super;
};
}