1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

38 lines
843 B
Nix

# Define all supported ROS distros
self: super: {
rosPackages = rec {
recurseForDerivations = true;
lib = super.lib // import ../lib { inherit lib self; };
noetic = import ./distro-overlay.nix {
version = 1;
distro = "noetic";
python = self.python3;
} self super;
foxy = import ./distro-overlay.nix {
version = 2;
distro = "foxy";
python = self.python3;
} self super;
humble = import ./distro-overlay.nix {
version = 2;
distro = "humble";
python = self.python3;
} self super;
iron = import ./distro-overlay.nix {
version = 2;
distro = "iron";
python = self.python3;
} self super;
rolling = import ./distro-overlay.nix {
version = 2;
distro = "rolling";
python = self.python3;
} self super;
};
}