2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-12-27 13:14:54 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gen-version-h, ament-cmake-gmock, backward-ros, control-msgs, joint-limits, lifecycle-msgs, pluginlib, rclcpp-lifecycle, rcpputils, rcutils, realtime-tools, ros2-control-test-assets, sdformat-urdf, tinyxml2-vendor, urdf }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-hardware-interface";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "4.22.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/hardware_interface/4.22.0-1.tar.gz";
|
|
|
|
name = "4.22.0-1.tar.gz";
|
|
|
|
sha256 = "ced818720dbd74db4ea5bb87254d5655f08d391e9fec2f9b8b8732aa3ceaa61a";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-04-05 13:51:29 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-gen-version-h ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-gmock ros2-control-test-assets ];
|
2024-12-27 13:14:54 +00:00
|
|
|
propagatedBuildInputs = [ backward-ros control-msgs joint-limits lifecycle-msgs pluginlib rclcpp-lifecycle rcpputils rcutils realtime-tools sdformat-urdf tinyxml2-vendor urdf ];
|
2024-04-05 13:51:29 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-gen-version-h ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "ros2_control hardware interface";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|