[fix] grid-map-cv and grid-map-filters

This commit is contained in:
Bernd Müller 2025-05-12 09:04:31 +02:00
parent 4072d6ed51
commit fffe3ea8a2
No known key found for this signature in database
GPG key ID: 93D117F0550F25C5

View file

@ -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 ? [], ...
}: {