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";
|
2020-08-24 18:45:07 -04:00
|
|
|
version = "2.0.1-r1";
|
2020-07-31 13:40:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-24 18:45:07 -04:00
|
|
|
url = "https://github.com/ros-gbp/control_toolbox-release/archive/release/foxy/control_toolbox/2.0.1-1.tar.gz";
|
|
|
|
name = "2.0.1-1.tar.gz";
|
|
|
|
sha256 = "8ddf13fb64a4259acb9a9bc609e8b411aa77e12765f5c7673ac6ca574fb5073d";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|