mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 10:44:50 +03:00
17 lines
260 B
Nix
Executable file
17 lines
260 B
Nix
Executable file
# Environment containing basic ROS2 tools
|
|
|
|
with import ../. {};
|
|
with rosPackages.humble;
|
|
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
(buildEnv {
|
|
paths = [
|
|
ros-environment
|
|
ros2topic
|
|
ros2node
|
|
geometry-msgs
|
|
];
|
|
})
|
|
];
|
|
}
|