2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, git, rclcpp, rmw-implementation, ros-environment, rosidl-default-generators, rosidl-default-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-performance-test";
|
2024-10-04 13:25:33 +00:00
|
|
|
version = "2.3.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-04 13:25:33 +00:00
|
|
|
url = "https://github.com/ros2-gbp/performance_test-release/archive/release/jazzy/performance_test/2.3.0-1.tar.gz";
|
|
|
|
name = "2.3.0-1.tar.gz";
|
|
|
|
sha256 = "e411daa74a473dacd3aba4c3f9592170b429427df67ddbfc0b74530da117ab27";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake git ros-environment rosidl-default-generators ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ rclcpp rmw-implementation rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake git rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Tool to test performance of ROS2 and DDS data layers and communication.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|