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/default.nix
Ben Wolsieffer eba1ff3516 distros: remove kinetic
It has been EOL since April
2021-05-28 19:06:59 -04:00

37 lines
849 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;
};
}