2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-04-25 13:38:11 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gen-version-h, ament-cmake-gmock, geometry-msgs, hardware-interface, rclcpp-lifecycle, realtime-tools, ros2-control-cmake, sensor-msgs }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-controller-interface";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "4.29.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/rolling/controller_interface/4.29.0-1.tar.gz";
|
|
|
|
name = "4.29.0-1.tar.gz";
|
|
|
|
sha256 = "1f554b7663b2a06b122c45a8102ff366286de0bb630edab0bce4b519ad23b039";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2025-04-25 13:38:11 +00:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-gen-version-h ros2-control-cmake sensor-msgs ];
|
2024-11-08 14:09:31 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock geometry-msgs ];
|
|
|
|
propagatedBuildInputs = [ hardware-interface rclcpp-lifecycle realtime-tools ];
|
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 = {
|
2025-04-25 13:38:11 +00:00
|
|
|
description = "Base classes for controllers and syntax cookies for supporting common sensor types in controllers and broadcasters";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|