2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-04-11 13:54:49 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, boost, libcap, lifecycle-msgs, rclcpp, rclcpp-action, rclcpp-lifecycle, ros2-control-cmake, test-msgs }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-realtime-tools";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "4.2.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/realtime_tools-release/archive/release/rolling/realtime_tools/4.2.1-1.tar.gz";
|
|
|
|
name = "4.2.1-1.tar.gz";
|
|
|
|
sha256 = "57896cec79cc70b7c84931856417ebac007c1b2af80d789cf25ac5965fc749e8";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2025-04-11 13:54:49 +00:00
|
|
|
buildInputs = [ ros2-control-cmake ];
|
2024-08-16 13:54:37 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock lifecycle-msgs rclcpp-lifecycle test-msgs ];
|
2025-02-14 13:45:14 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake boost libcap rclcpp rclcpp-action ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Contains a set of tools that can be used from a hard
|
|
|
|
realtime thread, without breaking the realtime behavior.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ "3-Clause-BSD" ];
|
|
|
|
};
|
|
|
|
}
|