diff --git a/distros/humble/overrides.nix b/distros/humble/overrides.nix index cc74b7332b..76bce44112 100644 --- a/distros/humble/overrides.nix +++ b/distros/humble/overrides.nix @@ -30,6 +30,12 @@ in with lib; { gazebo = self.gazebo_11; + gazebo-ros = rosSuper.gazebo-ros.overrideAttrs ({ + buildInputs ? [], ... + }: { + buildInputs = buildInputs ++ [ self.qt5.qtbase ]; + }); + google-benchmark-vendor = lib.patchExternalProjectGit rosSuper.google-benchmark-vendor { url = "https://github.com/google/benchmark.git"; rev = "c05843a9f622db08ad59804c190f98879b76beba"; @@ -105,6 +111,12 @@ in with lib; { propagatedBuildInputs = propagatedBuildInputs ++ [ rosSelf.moveit-ros-planning ]; }); + nav2-costmap-2d = rosSuper.nav2-costmap-2d.overrideAttrs({ + ... + }: { + env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=array-bounds" ]; + }); + novatel-oem7-driver = (patchExternalProjectGit rosSuper.novatel-oem7-driver { url = "https://github.com/novatel/novatel_edie"; rev = "d02ccc2dfe531d642c1e2ca8a8c0f8205c856f23";