# Copyright 2022 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake }: buildRosPackage { pname = "ros-humble-dynamixel-sdk"; version = "3.7.60-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/dynamixel_sdk-release/archive/release/humble/dynamixel_sdk/3.7.60-1.tar.gz"; name = "3.7.60-1.tar.gz"; sha256 = "78df24af4c32789fe1fe7a1ee5f6cf5222de7eae7d110d2404ede8b728bf9537"; }; buildType = "ament_cmake"; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''This package is wrapping version of ROBOTIS Dynamixel SDK for ROS 2. 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 ]; }; }