nix-ros-overlay/examples/turtlebot3-gazebo.nix

26 lines
509 B
Nix
Raw Normal View History

2019-04-27 01:27:57 -04:00
# Run:
# roslaunch turtlebot3_gazebo turtlebot3_world.launch
# roslaunch turtlebot3_teleop turtlebot3_teleop_key.launch
with import ../. {};
with rosPackages.melodic;
2019-04-27 01:27:57 -04:00
with pythonPackages;
mkShell {
buildInputs = [
glibcLocales
(buildEnv { paths = [
rosbash
2019-04-27 01:27:57 -04:00
turtlebot3-description
turtlebot3-teleop
turtlebot3-gazebo
gazebo-plugins
xacro
]; })
];
ROS_HOSTNAME = "localhost";
ROS_MASTER_URI = "http://localhost:11311";
2019-05-12 19:37:03 -04:00
TURTLEBOT3_MODEL = "burger";
2019-04-27 01:27:57 -04:00
}