nix-ros-overlay/examples/turtlebot3-gazebo.nix
2019-05-12 19:37:03 -04:00

25 lines
507 B
Nix
Executable file

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