Move popf override to ROS2 overlay

popf is a ROS2 only package.
This commit is contained in:
Ben Wolsieffer 2023-04-02 11:36:54 -04:00
parent 4889b39499
commit fcc87e5736
2 changed files with 9 additions and 9 deletions

View file

@ -171,15 +171,6 @@ let
nativeBuildInputs = nativeBuildInputs ++ [ self.qt5.wrapQtAppsHook ];
});
popf = rosSuper.popf.overrideAttrs ({
nativeBuildInputs ? [], postPatch ? "", ...
}: {
nativeBuildInputs = nativeBuildInputs ++ [ self.perl ];
postPatch = postPatch + ''
patchShebangs --build src/VALfiles/parsing/fixyywrap
'';
});
pr2-tilt-laser-interface = patchBoostSignals rosSuper.pr2-tilt-laser-interface;
python-qt-binding = rosSuper.python-qt-binding.overrideAttrs ({

View file

@ -79,6 +79,15 @@ rosSelf: rosSuper: with rosSelf.lib; {
];
});
popf = rosSuper.popf.overrideAttrs ({
nativeBuildInputs ? [], postPatch ? "", ...
}: {
nativeBuildInputs = nativeBuildInputs ++ [ self.perl ];
postPatch = postPatch + ''
patchShebangs --build src/VALfiles/parsing/fixyywrap
'';
});
python-cmake-module = rosSuper.python-cmake-module.overrideAttrs ({ ... }: let
python = rosSelf.python;
in {