# Copyright 2020 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, boost, catkin, message-generation, message-runtime, rosconsole, roscpp, roscpp-serialization, rostime, std-msgs }: buildRosPackage { pname = "ros-melodic-roscpp-tutorials"; version = "0.9.2-r1"; src = fetchurl { url = "https://github.com/ros-gbp/ros_tutorials-release/archive/release/melodic/roscpp_tutorials/0.9.2-1.tar.gz"; name = "0.9.2-1.tar.gz"; sha256 = "a82a08f1a30146510f7a74bd283757057d2b65e0dd4a1a9d0f00b260b81fe842"; }; buildType = "catkin"; buildInputs = [ message-generation ]; propagatedBuildInputs = [ boost message-runtime rosconsole roscpp roscpp-serialization rostime std-msgs ]; nativeBuildInputs = [ catkin ]; meta = { description = ''This package attempts to show the features of ROS step-by-step, including using messages, servers, parameters, etc.''; license = with lib.licenses; [ bsdOriginal ]; }; }