1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/dynamixel-workbench/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

28 lines
1 KiB
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, dynamixel-workbench-toolbox }:
buildRosPackage {
pname = "ros-foxy-dynamixel-workbench";
version = "2.2.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/dynamixel_workbench-release/archive/release/foxy/dynamixel_workbench/2.2.3-1.tar.gz";
name = "2.2.3-1.tar.gz";
sha256 = "6a1a975f3636db3227405fdbd35040b01dad3fc4d6ee2f631aaee3f20a5efeb6";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ dynamixel-workbench-toolbox ];
nativeBuildInputs = [ ament-cmake ];
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 = with lib.licenses; [ asl20 ];
};
}