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:
parent
11ccd872b9
commit
dc9ba9fc47
3 changed files with 14 additions and 0 deletions
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -10,6 +10,7 @@ jobs:
|
|||
- kinetic
|
||||
- melodic
|
||||
- melodicPython3
|
||||
- noetic
|
||||
- crystal
|
||||
- dashing
|
||||
- eloquent
|
||||
|
|
|
@ -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;
|
||||
|
|
8
distros/noetic/overrides.nix
Normal file
8
distros/noetic/overrides.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue