nix-ros-overlay/distros/foxy/realtime-tools/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1,002 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-lint-auto, ament-lint-common, rclcpp, rclcpp-action, test-msgs }:
buildRosPackage {
pname = "ros-foxy-realtime-tools";
version = "2.2.0-r1";
src = fetchurl {
url = "https://github.com/ros-gbp/realtime_tools-release/archive/release/foxy/realtime_tools/2.2.0-1.tar.gz";
name = "2.2.0-1.tar.gz";
sha256 = "7ccfcdccb6f2398cbe2e563fc7b458640fa6f0efeb5a44e5161eaa232df13a28";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common rclcpp-action test-msgs ];
propagatedBuildInputs = [ ament-cmake rclcpp rclcpp-action ];
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 ];
};
}