1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/distros/rolling/dynamixel-sdk-examples/default.nix

27 lines
963 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, dynamixel-sdk, dynamixel-sdk-custom-interfaces, rclcpp }:
buildRosPackage {
pname = "ros-rolling-dynamixel-sdk-examples";
version = "3.7.40-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/dynamixel_sdk-release/archive/release/rolling/dynamixel_sdk_examples/3.7.40-4.tar.gz";
name = "3.7.40-4.tar.gz";
sha256 = "2ff930cd9af22a1c00d21b846641dcff2a481220f6103b5745803257038356e8";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ dynamixel-sdk dynamixel-sdk-custom-interfaces rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ROS2 examples using ROBOTIS DYNAMIXEL SDK'';
license = with lib.licenses; [ asl20 ];
};
}