nix-ros-overlay/examples/ros2-basic.nix

21 lines
343 B
Nix
Raw Normal View History

2021-03-12 00:33:54 -05:00
# Environment containing basic ROS2 tools
with import ../. {};
with rosPackages.foxy;
mkShell {
nativeBuildInputs = [
(buildEnv {
paths = [
ros-environment
ros2topic
ros2node
geometry-msgs
rmw-fastrtps-dynamic-cpp
2021-03-12 00:33:54 -05:00
];
})
];
RMW_IMPLEMENTATION = "rmw_fastrtps_dynamic_cpp";
2021-03-12 00:33:54 -05:00
}