Skip to content

Commit 26790b7

Browse files
committed
jazzy: Fix ros2 topic pub --stdin
See ros2/ros2cli#1105.
1 parent 6d24b82 commit 26790b7

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

distros/jazzy/overrides.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,17 @@ in {
217217
];
218218
});
219219

220+
ros2topic = rosSuper.ros2topic.overrideAttrs ({ patches ? [], ...}: {
221+
patches = patches ++ [
222+
# Fix ros2 topic pub --stdin (https://github.com/ros2/ros2cli/pull/1105/)
223+
(self.fetchpatch {
224+
url = "https://github.com/ros2/ros2cli/pull/1105/commits/0b28b1e57f74002a6569147c9d38e973390ac91c.patch";
225+
hash = "sha256-reKi/M4v68PSU+BC/RZBuSWIgyeHxXfk8QUsh64fVJs=";
226+
stripLen = 1;
227+
})
228+
];
229+
});
230+
220231
rviz-ogre-vendor = lib.patchAmentVendorGit rosSuper.rviz-ogre-vendor {
221232
tarSourceArgs.hook = let
222233
version = "1.79";

0 commit comments

Comments
 (0)