1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00

Add ROS Noetic.

Many packages are likely to be broken right now.
This commit is contained in:
Ben Wolsieffer 2020-05-23 15:25:54 -04:00
parent 11ccd872b9
commit dc9ba9fc47
3 changed files with 14 additions and 0 deletions

View file

@ -10,6 +10,7 @@ jobs:
- kinetic
- melodic
- melodicPython3
- noetic
- crystal
- dashing
- eloquent

View file

@ -24,6 +24,11 @@ self: super: {
python = self.python3;
} self super;
noetic = import ./distro-overlay.nix {
distro = "noetic";
python = self.python3;
} self super;
crystal = import ./distro-overlay.nix {
distro = "crystal";
python = self.python3;

View file

@ -0,0 +1,8 @@
# Top level package set
self:
# Distro package set
rosSelf: rosSuper: with rosSelf.lib; {
gazeboSimulator = self.gazeboSimulator // {
gazebo = self.gazeboSimulator.gazebo11;
};
}