mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
26 lines
963 B
Nix
26 lines
963 B
Nix
![]() |
|
||
|
# Copyright 2022 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.7.40-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/dynamixel_sdk-release/archive/release/rolling/dynamixel_sdk_custom_interfaces/3.7.40-2.tar.gz";
|
||
|
name = "3.7.40-2.tar.gz";
|
||
|
sha256 = "3adcb56a70f709d0190c914bc1c661a90209e10c7575edc4b70ce9604c848b5e";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime ];
|
||
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''ROS2 custom interface examples using ROBOTIS DYNAMIXEL SDK'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|