noetic: Fix joy to compile against new Boost

This commit is contained in:
Michal Sojka 2025-03-08 18:48:27 +01:00 committed by Ben Wolsieffer
parent eeec73f9de
commit 2beb0debae

View file

@ -52,6 +52,11 @@ in {
nativeBuildInputs = nativeBuildInputs ++ [ self.pkg-config ];
});
joy = rosSuper.joy.overrideAttrs ({ ... }: {
# Boost.Math 1.87 requires C++14
NIX_CFLAGS_COMPILE = ["-std=c++14"];
});
laser-geometry = rosSuper.laser-geometry.overrideAttrs ({
postPatch ? "", ...
}: {