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

39 lines
858 B
Nix
Raw Normal View History

2019-04-16 15:02:56 -04:00
# Define all supported ROS distros
self: super: {
rosPackages = rec {
2022-07-04 21:01:47 -04:00
recurseForDerivations = true;
lib = super.lib // import ../lib { inherit lib self; };
2019-12-06 17:18:47 -05:00
melodicPython3 = import ./distro-overlay.nix {
2022-11-05 17:46:30 -04:00
version = 1;
2019-04-16 15:02:56 -04:00
distro = "melodic";
python = self.python3;
} self super;
noetic = import ./distro-overlay.nix {
2022-11-05 17:46:30 -04:00
version = 1;
distro = "noetic";
python = self.python3;
} self super;
2020-06-12 20:47:02 -04:00
foxy = import ./distro-overlay.nix {
2022-11-05 17:46:30 -04:00
version = 2;
2020-06-12 20:47:02 -04:00
distro = "foxy";
python = self.python3;
} self super;
2021-05-28 20:55:57 -04:00
galactic = import ./distro-overlay.nix {
2022-11-05 17:46:30 -04:00
version = 2;
2021-05-28 20:55:57 -04:00
distro = "galactic";
python = self.python3;
} self super;
2022-06-11 13:12:44 -04:00
humble = import ./distro-overlay.nix {
2022-11-05 17:46:30 -04:00
version = 2;
2022-06-11 13:12:44 -04:00
distro = "humble";
python = self.python3;
} self super;
2019-04-16 15:02:56 -04:00
};
}