2020-07-31 13:40:46 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-31 13:40:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-08-24 18:45:07 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, ament-lint-auto, ament-lint-common, control-msgs, rclcpp, rclcpp-lifecycle, rcutils, realtime-tools }:
|
2020-07-31 13:40:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-control-toolbox";
|
2021-05-28 23:33:17 +00:00
|
|
|
version = "2.0.2-r1";
|
2020-07-31 13:40:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-28 23:33:17 +00:00
|
|
|
url = "https://github.com/ros-gbp/control_toolbox-release/archive/release/foxy/control_toolbox/2.0.2-1.tar.gz";
|
|
|
|
name = "2.0.2-1.tar.gz";
|
|
|
|
sha256 = "d1dedcf0b9134b3d066539b3b83d4e0bfe91e588ef060c72bcc75a3b6be1f854";
|
2020-07-31 13:40:46 +00:00
|
|
|
};
|
|
|
|
|
2020-08-24 18:45:07 -04:00
|
|
|
buildType = "ament_cmake";
|
2020-07-31 13:40:46 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ament-lint-auto ament-lint-common rclcpp-lifecycle ];
|
2020-08-24 18:45:07 -04:00
|
|
|
propagatedBuildInputs = [ control-msgs rclcpp rcutils realtime-tools ];
|
2020-07-31 13:40:46 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The control toolbox contains modules that are useful across all controllers.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|