mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 19:24:50 +03:00
actionlib: fix Boost placeholders
This commit is contained in:
parent
0a6544c7d0
commit
b1d33e431e
1 changed files with 13 additions and 0 deletions
|
@ -41,6 +41,19 @@ let
|
||||||
overrides = rosSelf: rosSuper: with rosSelf.lib; {
|
overrides = rosSelf: rosSuper: with rosSelf.lib; {
|
||||||
# ROS package overrides/fixups
|
# ROS package overrides/fixups
|
||||||
|
|
||||||
|
# Fix usages of global Boost placeholders
|
||||||
|
# https://github.com/ros/actionlib/pull/197
|
||||||
|
actionlib = rosSuper.actionlib.overrideAttrs ({
|
||||||
|
patches ? [], ...
|
||||||
|
}: {
|
||||||
|
patches = patches ++ [ (self.fetchpatch {
|
||||||
|
url = "https://github.com/lopsided98/actionlib/commit/d675dd75d9080d2832591e0220d19e0f0d981446.patch";
|
||||||
|
stripLen = 1;
|
||||||
|
includes = [ "include/*" ];
|
||||||
|
sha256 = "sha256-bB8PkiDisgBgZoDyieiT1dSQK/xSfG8ZZOJyigX0SYY=";
|
||||||
|
}) ];
|
||||||
|
});
|
||||||
|
|
||||||
ament-cmake-core = rosSuper.ament-cmake-core.overrideAttrs ({ ... }: {
|
ament-cmake-core = rosSuper.ament-cmake-core.overrideAttrs ({ ... }: {
|
||||||
setupHook = ./ament-cmake-core-setup-hook.sh;
|
setupHook = ./ament-cmake-core-setup-hook.sh;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue