lanelet2-core: Fix compilation with Boost 1.87

This commit is contained in:
Michal Sojka 2025-05-16 14:56:20 +02:00
parent 4072d6ed51
commit 2ac4a30bba

View file

@ -159,6 +159,19 @@ rosSelf: rosSuper: with rosSelf.lib; {
cmakeFlags = cmakeFlags ++ [ "-DDOWNLOAD_TOML_LIB=OFF" ];
});
lanelet2-core = rosSuper.lanelet2-core.overrideAttrs ({
patches ? [], ...
}: {
patches = patches ++ [
# Fix compilation with Boost 1.87
(self.fetchpatch {
url = "https://github.com/fzi-forschungszentrum-informatik/Lanelet2/pull/399/commits/cf65e2d05f30a088731128e445df6f3ea523885d.patch";
hash = "sha256-aPO7mkS6DlSQIgcb6kJAZrwMWCkvWESM54feKtpeWO8=";
stripLen = 1;
})
];
});
libcamera = rosSuper.libcamera.overrideAttrs ({
postPatch ? "",
nativeBuildInputs ? [], ...