mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 18:54:50 +03:00
20 lines
343 B
Nix
Executable file
20 lines
343 B
Nix
Executable file
# Environment containing basic ROS2 tools
|
|
|
|
with import ../. {};
|
|
with rosPackages.foxy;
|
|
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
(buildEnv {
|
|
paths = [
|
|
ros-environment
|
|
ros2topic
|
|
ros2node
|
|
geometry-msgs
|
|
rmw-fastrtps-dynamic-cpp
|
|
];
|
|
})
|
|
];
|
|
|
|
RMW_IMPLEMENTATION = "rmw_fastrtps_dynamic_cpp";
|
|
}
|