mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 18:54:50 +03:00
Add ROS2 foxy.
This commit is contained in:
parent
f939354c35
commit
c64a130ff0
3 changed files with 23 additions and 0 deletions
1
.github/workflows/build.yaml
vendored
1
.github/workflows/build.yaml
vendored
|
@ -14,6 +14,7 @@ jobs:
|
|||
- crystal
|
||||
- dashing
|
||||
- eloquent
|
||||
- foxy
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: cachix/install-nix-action@v8
|
||||
|
|
|
@ -43,5 +43,10 @@ self: super: {
|
|||
distro = "eloquent";
|
||||
python = self.python3;
|
||||
} self super;
|
||||
|
||||
foxy = import ./distro-overlay.nix {
|
||||
distro = "foxy";
|
||||
python = self.python3;
|
||||
} self super;
|
||||
};
|
||||
}
|
||||
|
|
17
distros/foxy/overrides.nix
Normal file
17
distros/foxy/overrides.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Top level package set
|
||||
self:
|
||||
# Distro package set
|
||||
rosSelf: rosSuper: with rosSelf.lib; {
|
||||
cyclonedds = rosSuper.cyclonedds.overrideAttrs ({
|
||||
cmakeFlags ? [], ...
|
||||
}: {
|
||||
# This is specified in colcon.pkg. We will probably eventually need to start
|
||||
# using colcon...
|
||||
cmakeFlags = [ "-DBUILD_IDLC=AUTO" ];
|
||||
});
|
||||
|
||||
rviz-ogre-vendor = patchVendorUrl rosSuper.rviz-ogre-vendor {
|
||||
url = "https://github.com/OGRECave/ogre/archive/v1.12.1.zip";
|
||||
sha256 = "1iv6k0dwdzg5nnzw2mcgcl663q4f7p2kj7nhs8afnsikrzxxgsi4";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue