actionlib: fix Boost placeholders

This commit is contained in:
Ben Wolsieffer 2022-01-08 16:31:28 -05:00
parent 0a6544c7d0
commit b1d33e431e

View file

@ -41,6 +41,19 @@ let
overrides = rosSelf: rosSuper: with rosSelf.lib; {
# 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 ({ ... }: {
setupHook = ./ament-cmake-core-setup-hook.sh;
});