mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
noetic: Fix simple-message to compile against new Boost
This commit is contained in:
parent
15bf87e119
commit
ae1b3267f2
1 changed files with 9 additions and 0 deletions
|
@ -262,6 +262,15 @@ in {
|
||||||
buildInputs = buildInputs ++ [ self.opencl-clhpp ];
|
buildInputs = buildInputs ++ [ self.opencl-clhpp ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
simple-message = rosSuper.simple-message.overrideAttrs ({
|
||||||
|
postPatch ? "", ...
|
||||||
|
}: {
|
||||||
|
# Boost.Math requires C++14
|
||||||
|
postPatch = postPatch + ''
|
||||||
|
substituteInPlace CMakeLists.txt --replace-fail "set(CMAKE_CXX_STANDARD 11)" "set(CMAKE_CXX_STANDARD 14)"
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
sophus = rosSuper.sophus.overrideAttrs ({
|
sophus = rosSuper.sophus.overrideAttrs ({
|
||||||
postPatch ? "", ...
|
postPatch ? "", ...
|
||||||
}: {
|
}: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue