mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
955 B
Nix
26 lines
955 B
Nix
|
|
# 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-iron-dynamixel-sdk-examples";
|
|
version = "3.7.40-r5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/dynamixel_sdk-release/archive/release/iron/dynamixel_sdk_examples/3.7.40-5.tar.gz";
|
|
name = "3.7.40-5.tar.gz";
|
|
sha256 = "6feb901947ee3f0993501809947f24c15c4d40f66de6745ae1329ca96ae16e91";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|