1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/dynamixel-sdk/default.nix

25 lines
972 B
Nix
Raw Normal View History

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 }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-dynamixel-sdk";
version = "3.7.21-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
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
};
buildType = "catkin";
propagatedBuildInputs = [ roscpp rospy ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
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 ];
2019-03-21 00:14:59 -04:00
};
}