mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-09 17:42:22 +03:00
noetic: Fix nav-* packages to compile against new Boost
This commit is contained in:
parent
50b0bf9740
commit
eeec73f9de
1 changed files with 55 additions and 0 deletions
|
@ -112,6 +112,61 @@ in {
|
|||
}) ];
|
||||
});
|
||||
|
||||
nav-2d-utils = rosSuper.nav-2d-utils.overrideAttrs ({
|
||||
postPatch ? "", ...
|
||||
}: {
|
||||
# Boost.Math 1.87 requires C++14
|
||||
postPatch = postPatch + ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail '-std=c++11' '-std=c++14'
|
||||
'';
|
||||
});
|
||||
|
||||
nav-core-adapter = rosSuper.nav-core-adapter.overrideAttrs ({
|
||||
postPatch ? "", ...
|
||||
}: {
|
||||
# Boost.Math 1.87 requires C++14
|
||||
postPatch = postPatch + ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail '-std=c++11' '-std=c++14'
|
||||
'';
|
||||
});
|
||||
|
||||
nav-core-adapters = rosSuper.nav-core-adapters.overrideAttrs ({
|
||||
postPatch ? "", ...
|
||||
}: {
|
||||
# Boost.Math 1.87 requires C++14
|
||||
postPatch = postPatch + ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail '-std=c++11' '-std=c++14'
|
||||
'';
|
||||
});
|
||||
|
||||
nav-core2 = rosSuper.nav-core2.overrideAttrs ({
|
||||
postPatch ? "", ...
|
||||
}: {
|
||||
# Boost.Math 1.87 requires C++14
|
||||
postPatch = postPatch + ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail '-std=c++11' '-std=c++14'
|
||||
'';
|
||||
});
|
||||
|
||||
nav-grid-iterators = rosSuper.nav-grid-iterators.overrideAttrs ({
|
||||
postPatch ? "", ...
|
||||
}: {
|
||||
# Boost.Math 1.87 requires C++14
|
||||
postPatch = postPatch + ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail '-std=c++11' '-std=c++14'
|
||||
'';
|
||||
});
|
||||
|
||||
nav-grid-server = rosSuper.nav-grid-server.overrideAttrs ({
|
||||
buildInputs ? [], postPatch ? "", ...
|
||||
}: {
|
||||
# Boost.Math 1.87 requires C++14
|
||||
postPatch = postPatch + ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail '-std=c++11' '-std=c++14'
|
||||
'';
|
||||
buildInputs = buildInputs ++ [ self.yaml-cpp ];
|
||||
});
|
||||
|
||||
novatel-oem7-driver = (lib.patchExternalProjectGit rosSuper.novatel-oem7-driver {
|
||||
url = "https://github.com/novatel/novatel_edie";
|
||||
originalRev = "origin/dev-ros_install_prefix";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue