2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-07-01 13:51:59 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, control-msgs, rclcpp, rclcpp-lifecycle, rcutils, realtime-tools }:
|
2022-06-09 18:50:37 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-control-toolbox";
|
2022-07-01 13:51:59 +00:00
|
|
|
version = "2.1.0-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-07-01 13:51:59 +00:00
|
|
|
url = "https://github.com/ros2-gbp/control_toolbox-release/archive/release/humble/control_toolbox/2.1.0-1.tar.gz";
|
|
|
|
name = "2.1.0-1.tar.gz";
|
|
|
|
sha256 = "1be3c3ffccf588fe727570554d000b2b3e1536f93bc4dc039a4e0e0441837112";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-07-01 13:51:59 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest rclcpp-lifecycle ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ control-msgs rclcpp rcutils realtime-tools ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The control toolbox contains modules that are useful across all controllers.'';
|
2022-07-01 13:51:59 +00:00
|
|
|
license = with lib.licenses; [ bsd3 ];
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
}
|