# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, roscpp-tutorials, rospy-tutorials, turtlesim }: buildRosPackage { pname = "ros-melodic-ros-tutorials"; version = "0.9.3-r1"; src = fetchurl { url = "https://github.com/ros-gbp/ros_tutorials-release/archive/release/melodic/ros_tutorials/0.9.3-1.tar.gz"; name = "0.9.3-1.tar.gz"; sha256 = "b11578f25330eb352df3f4a08c5b1eceb4c9693d2e84bbccf3ce06e4c19940f1"; }; buildType = "catkin"; propagatedBuildInputs = [ roscpp-tutorials rospy-tutorials turtlesim ]; nativeBuildInputs = [ catkin ]; meta = { description = ''ros_tutorials contains packages that demonstrate various features of ROS, as well as support packages which help demonstrate those features.''; license = with lib.licenses; [ bsdOriginal ]; }; }