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