mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-12 05:16:30 +03:00
30 lines
1.2 KiB
Nix
30 lines
1.2 KiB
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, dynamixel-sdk, rclcpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-dynamixel-workbench-toolbox";
|
||
|
version = "2.2.3-r5";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/dynamixel_workbench-release/archive/release/jazzy/dynamixel_workbench_toolbox/2.2.3-5.tar.gz";
|
||
|
name = "2.2.3-5.tar.gz";
|
||
|
sha256 = "e1cc1f0e4fe1a7e6c8acd9679e1af181b49658f86b7d093bdaa60d4b84d4b6dc";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ];
|
||
|
propagatedBuildInputs = [ dynamixel-sdk rclcpp ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = "This package is composed of 'dynamixel_item', 'dynamixel_tool', 'dynamixel_driver' and 'dynamixel_workbench' class.
|
||
|
The 'dynamixel_item' is saved as control table item and information of DYNAMIXEL.
|
||
|
The 'dynamixel_tool' class loads its by model number of DYNAMIXEL.
|
||
|
The 'dynamixel_driver' class includes wraped function used in DYNAMIXEL SDK.
|
||
|
The 'dynamixel_workbench' class make simple to use DYNAMIXEL.";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|