mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
26 lines
1.2 KiB
Nix
26 lines
1.2 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, dynamixel-workbench-controllers, catkin, dynamixel-workbench-single-manager, dynamixel-workbench-single-manager-gui, dynamixel-workbench-toolbox, dynamixel-workbench-operators }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-dynamixel-workbench";
|
||
|
version = "2.0.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ROBOTIS-GIT-release/dynamixel-workbench-release/archive/release/kinetic/dynamixel_workbench/2.0.0-0.tar.gz;
|
||
|
sha256 = "3b3076c4de54c9e8088751819d0af9ab14d772b3c5531c611182a7e7cad3d6bf";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ dynamixel-workbench-single-manager dynamixel-workbench-single-manager-gui dynamixel-workbench-toolbox dynamixel-workbench-controllers dynamixel-workbench-operators ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Dynamixel-Workbench is dynamixel solution for ROS.
|
||
|
This metapackage allows you to easily change the ID, baudrate and operating mode of the Dynamixel.
|
||
|
Furthermore, it supports various controllers based on operating mode and Dynamixel SDK.
|
||
|
These controllers are commanded by operators.'';
|
||
|
#license = lib.licenses.Apache 2.0;
|
||
|
};
|
||
|
}
|