mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
17 lines
236 B
Nix
17 lines
236 B
Nix
![]() |
# Environment containing basic ROS2 tools
|
||
|
|
||
|
with import ../. {};
|
||
|
with rosPackages.foxy;
|
||
|
|
||
|
mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
(buildEnv {
|
||
|
paths = [
|
||
|
ros-environment
|
||
|
ros2topic
|
||
|
ros2node
|
||
|
];
|
||
|
})
|
||
|
];
|
||
|
}
|