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