2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-11-08 14:09:31 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, control-msgs, eigen, filters, generate-parameter-library, geometry-msgs, pluginlib, rclcpp, rclcpp-lifecycle, rcutils, realtime-tools }:
|
2023-06-19 17:15:23 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-control-toolbox";
|
2024-11-08 14:09:31 +00:00
|
|
|
version = "3.3.0-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-08 14:09:31 +00:00
|
|
|
url = "https://github.com/ros2-gbp/control_toolbox-release/archive/release/iron/control_toolbox/3.3.0-1.tar.gz";
|
|
|
|
name = "3.3.0-1.tar.gz";
|
|
|
|
sha256 = "5de20d3344f238d2bd364f6b9fda2c6986728e80a59f134fed5ec49e2ae7e0de";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest rclcpp-lifecycle ];
|
2024-11-08 14:09:31 +00:00
|
|
|
propagatedBuildInputs = [ control-msgs eigen filters generate-parameter-library geometry-msgs pluginlib rclcpp rcutils realtime-tools ];
|
2023-06-19 17:15:23 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The control toolbox contains modules that are useful across all controllers.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
|
|
|
};
|
|
|
|
}
|