Skip to content

Commit 3d65b32

Browse files
committed
kilted.rosx-introspection: Fix compile error
1 parent f492c9c commit 3d65b32

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

distros/kilted/overrides.nix

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,19 @@ in {
285285
rosidlcpp-typesupport-fastrtps-c = rosSuper.rosidlcpp-typesupport-fastrtps-c.override { fmt = self.fmt_9; };
286286
rosidlcpp-typesupport-fastrtps-cpp = rosSuper.rosidlcpp-typesupport-fastrtps-cpp.override { fmt = self.fmt_9; };
287287

288+
rosx-introspection = rosSuper.rosx-introspection.overrideAttrs ({
289+
patches ? [], ...
290+
}: {
291+
patches = patches ++ [
292+
# https://github.com/facontidavide/rosx_introspection/pull/36
293+
# Fix compile error in Kilted
294+
(self.fetchpatch2 {
295+
url = "https://github.com/facontidavide/rosx_introspection/commit/87c020744f26200ef083d07419aa13bf15c5fb0f.patch";
296+
hash = "sha256-gRspChmIcBHnEWUNAs0Ia83jV2aSou4umuVdsiKru7c=";
297+
})
298+
];
299+
});
300+
288301
rviz-ogre-vendor = lib.patchAmentVendorGit rosSuper.rviz-ogre-vendor {
289302
tarSourceArgs.hook = let
290303
version = "1.79";

0 commit comments

Comments
 (0)