mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
25 lines
959 B
Nix
25 lines
959 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-dynamixel-sdk-custom-interfaces";
|
|
version = "3.8.3-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/dynamixel_sdk-release/archive/release/rolling/dynamixel_sdk_custom_interfaces/3.8.3-1.tar.gz";
|
|
name = "3.8.3-1.tar.gz";
|
|
sha256 = "a7b10306e3882ea4944cb013a9d9734c53d838ce0cb06a067f4df3a3b173aa12";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime ];
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
meta = {
|
|
description = "ROS 2 custom interface examples using ROBOTIS DYNAMIXEL SDK";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|