mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
28 lines
980 B
Nix
28 lines
980 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, test-msgs, rclcpp, rclcpp-action }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-realtime-tools";
|
||
|
version = "2.0.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros-gbp/realtime_tools-release/archive/release/dashing/realtime_tools/2.0.0-1.tar.gz";
|
||
|
name = "2.0.0-1.tar.gz";
|
||
|
sha256 = "2f6332c3a982288e17fabb8a5bfde604ac8e03fc16b392710093bab1bd1ef208";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ rclcpp rclcpp-action ];
|
||
|
checkInputs = [ test-msgs rclcpp-action ament-cmake-gmock ];
|
||
|
propagatedBuildInputs = [ rclcpp-action rclcpp ament-cmake ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Contains a set of tools that can be used from a hard
|
||
|
realtime thread, without breaking the realtime behavior.'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|