mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
27 lines
476 B
Nix
27 lines
476 B
Nix
![]() |
# Environment containing basic ROS2 tools
|
||
|
|
||
|
{ pkgs ? import ../. {} }:
|
||
|
with pkgs;
|
||
|
with rosPackages.jazzy;
|
||
|
|
||
|
mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
(buildEnv {
|
||
|
paths = [
|
||
|
ros-core
|
||
|
colcon
|
||
|
geometry-msgs
|
||
|
turtlebot4-desktop
|
||
|
turtlebot4-simulator
|
||
|
slam-toolbox
|
||
|
nav2-minimal-tb4-sim
|
||
|
nav2-minimal-tb3-sim
|
||
|
# rqt metapackages
|
||
|
rqt-common-plugins
|
||
|
rqt-tf-tree
|
||
|
tf2-tools
|
||
|
];
|
||
|
})
|
||
|
];
|
||
|
}
|