2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-04-25 13:38:11 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, control-msgs, hardware-interface, lifecycle-msgs, pluginlib, rclcpp-lifecycle, ros2-control-cmake, ros2-control-test-assets }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-hardware-interface-testing";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "4.29.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/jazzy/hardware_interface_testing/4.29.0-1.tar.gz";
|
|
|
|
name = "4.29.0-1.tar.gz";
|
|
|
|
sha256 = "718c35d888dd5fb36084c988fa47cc02bcb1a8f3c0ea7a88a587e68b2136772f";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2025-04-25 13:38:11 +00:00
|
|
|
buildInputs = [ ament-cmake ros2-control-cmake ];
|
2024-05-24 14:00:52 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ];
|
|
|
|
propagatedBuildInputs = [ control-msgs hardware-interface lifecycle-msgs pluginlib rclcpp-lifecycle ros2-control-test-assets ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2025-04-25 13:38:11 +00:00
|
|
|
description = "Commonly used test fixtures for the ros2_control framework";
|
2024-05-24 14:00:52 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|