1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/examples/turtlebot3-gazebo.nix
2021-03-23 00:34:44 -04:00

25 lines
508 B
Nix
Executable file

# Run:
# roslaunch turtlebot3_gazebo turtlebot3_world.launch
# roslaunch turtlebot3_teleop turtlebot3_teleop_key.launch
with import ../. {};
with rosPackages.noetic;
with pythonPackages;
mkShell {
buildInputs = [
glibcLocales
(buildEnv { paths = [
rosbash
turtlebot3-description
turtlebot3-teleop
turtlebot3-gazebo
gazebo-plugins
xacro
]; })
];
ROS_HOSTNAME = "localhost";
ROS_MASTER_URI = "http://localhost:11311";
TURTLEBOT3_MODEL = "burger";
}