1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/control-toolbox/default.nix

25 lines
967 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-cmake-gtest, control-msgs, rclcpp, rclcpp-lifecycle, rcutils, realtime-tools }:
buildRosPackage {
pname = "ros-humble-control-toolbox";
version = "2.1.0-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gmock ament-cmake-gtest rclcpp-lifecycle ];
propagatedBuildInputs = [ control-msgs rclcpp rcutils realtime-tools ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''The control toolbox contains modules that are useful across all controllers.'';
license = with lib.licenses; [ bsd3 ];
};
}