1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/iron/performance-test/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, launch, launch-testing, osrf-testing-tools-cpp, rclcpp, rmw-implementation, rmw-implementation-cmake, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-iron-performance-test";
version = "1.2.1-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/performance_test-release/archive/release/iron/performance_test/1.2.1-4.tar.gz";
name = "1.2.1-4.tar.gz";
sha256 = "317228efae8b47a65acbc0ba201131bf1a4d9e3529b907f73f2f1f7c68e9555b";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake osrf-testing-tools-cpp rosidl-default-generators ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common launch launch-testing rmw-implementation-cmake ];
propagatedBuildInputs = [ rclcpp rmw-implementation rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''Tool to test performance of ROS2 and DDS data layers and communication.'';
license = with lib.licenses; [ asl20 ];
};
}