Skip to content

Commit 1b993b8

Browse files
committed
rqt-image-view: dont depend on qt5.qtbase
1 parent a03e222 commit 1b993b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

distros/distro-overlay.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,10 @@ let
290290
);
291291

292292
rqt-image-view = rosSuper.rqt-image-view.overrideAttrs ({
293-
nativeBuildInputs ? [], postFixup ? "", ...
293+
buildInputs ? [], nativeBuildInputs ? [], postFixup ? "", ...
294294
}: {
295295
dontWrapQtApps = false;
296+
buildInputs = super.lib.lists.filter (p: p.name != "qtbase") buildInputs;
296297
nativeBuildInputs = nativeBuildInputs ++ [ self.qt5.wrapQtAppsHook ];
297298
postFixup = postFixup + ''
298299
wrapQtApp "$out/lib/rqt_image_view/rqt_image_view"

0 commit comments

Comments
 (0)