mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
22 lines
899 B
Nix
22 lines
899 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-dynamixel-sdk";
|
|
version = "3.7.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/robotis-ros2-release/dynamixel_sdk-release/archive/release/dashing/dynamixel_sdk/3.7.10-1.tar.gz;
|
|
sha256 = "61f080ddd4b9ad78c3b86c9ddaf3f45c9a94aaa37688286cb62a33a4f7319410";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''This package is wrapping version of ROBOTIS Dynamxel 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 ];
|
|
};
|
|
}
|