nix-ros-overlay/distros/rolling/dynamixel-sdk/default.nix

24 lines
1,006 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-python }:
buildRosPackage {
pname = "ros-rolling-dynamixel-sdk";
version = "3.8.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/dynamixel_sdk-release/archive/release/rolling/dynamixel_sdk/3.8.3-1.tar.gz";
name = "3.8.3-1.tar.gz";
sha256 = "539de1f55d9276d198e6313c8f2a7cccfc0aec422209a0b1b39f5365c88f0be2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-python ];
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
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 ];
};
}