mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
[fix] grid-map-cv and grid-map-filters
This commit is contained in:
parent
4072d6ed51
commit
fffe3ea8a2
1 changed files with 18 additions and 0 deletions
|
@ -48,6 +48,24 @@ in with lib; {
|
|||
fetchgitArgs.hash = "sha256-h/e2vJacUp7PITez9HPzGc5+ofz7Oplso44VibECmsI=";
|
||||
};
|
||||
|
||||
grid-map-cv = rosSuper.grid-map-cv.overrideAttrs ({
|
||||
...
|
||||
}: {
|
||||
env.NIX_CFLAGS_COMPILE = toString [
|
||||
# Needed with GCC 12
|
||||
"-Wno-error=stringop-overflow"
|
||||
"-Wno-error=uninitialized"
|
||||
# Needed for GCC 13
|
||||
"-Wno-error=array-bounds"
|
||||
];
|
||||
});
|
||||
|
||||
grid-map-filters = rosSuper.grid-map-filters.overrideAttrs ({
|
||||
nativeBuildInputs ? [], ...
|
||||
}: {
|
||||
nativeBuildInputs = nativeBuildInputs ++ [self.pkg-config];
|
||||
});
|
||||
|
||||
iceoryx-hoofs = rosSuper.iceoryx-hoofs.overrideAttrs ({
|
||||
patches ? [], ...
|
||||
}: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue