1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/examples/ros2-basic.nix

18 lines
260 B
Nix
Raw Normal View History

2021-03-12 00:33:54 -05:00
# Environment containing basic ROS2 tools
with import ../. {};
2022-11-06 15:14:38 -05:00
with rosPackages.humble;
2021-03-12 00:33:54 -05:00
mkShell {
nativeBuildInputs = [
(buildEnv {
paths = [
ros-environment
ros2topic
ros2node
geometry-msgs
2021-03-12 00:33:54 -05:00
];
})
];
}