2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, roscpp, rospy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-dynamixel-sdk";
|
2019-09-06 12:26:32 -04:00
|
|
|
version = "3.7.21-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ROBOTIS-GIT-release/DynamixelSDK-release/archive/release/melodic/dynamixel_sdk/3.7.21-1.tar.gz";
|
|
|
|
name = "3.7.21-1.tar.gz";
|
|
|
|
sha256 = "6298842f665570ec035fbe27e02900b4018a4ff25185b73645c7143a87dee50a";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ roscpp rospy ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ roscpp rospy ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
2019-09-06 12:26:32 -04:00
|
|
|
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.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|