2022-06-09 18:50:37 -04:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-06-19 17:15:23 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-python, ament-index-cpp, backward-ros, controller-interface, controller-manager-msgs, hardware-interface, launch, launch-ros, pluginlib, rclcpp, rcpputils, realtime-tools, ros2-control-test-assets, ros2param, ros2run }:
|
2022-06-09 18:50:37 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-controller-manager";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "2.29.0-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_control-release/archive/release/humble/controller_manager/2.29.0-1.tar.gz";
|
|
|
|
name = "2.29.0-1.tar.gz";
|
|
|
|
sha256 = "38b518c320acc6854fdb423f4a70adf87125c3d1d0e603d5b28aff50fc673433";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-gmock ];
|
2023-06-19 17:15:23 -04:00
|
|
|
propagatedBuildInputs = [ ament-index-cpp backward-ros controller-interface controller-manager-msgs hardware-interface launch launch-ros pluginlib rclcpp rcpputils realtime-tools ros2-control-test-assets ros2param ros2run ];
|
2022-06-09 18:50:37 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Description of controller_manager'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|