# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, roscpp, rospy }: buildRosPackage { pname = "ros-melodic-dynamixel-sdk"; version = "3.7.51-r4"; src = fetchurl { url = "https://github.com/ROBOTIS-GIT-release/DynamixelSDK-release/archive/release/melodic/dynamixel_sdk/3.7.51-4.tar.gz"; name = "3.7.51-4.tar.gz"; sha256 = "9acbf98d3e733be9a321c31816c0beddd5bacff6dc266775c35fb455a31c6a3b"; }; buildType = "catkin"; propagatedBuildInputs = [ roscpp rospy ]; nativeBuildInputs = [ catkin ]; meta = { description = ''This package is wrapping version of ROBOTIS Dynamixel SDK for ROS. The ROBOTIS Dynamixel SDK, or SDK, is a software development library that provides Dynamixel control functions for packet communication. The API is designed for Dynamixel actuators and Dynamixel-based platforms.''; license = with lib.licenses; [ asl20 ]; }; }