mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2025 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, git, rclcpp, rmw-implementation, ros-environment, rosidl-default-generators, rosidl-default-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-performance-test";
|
|
version = "2.3.0-r1";
|
|
|
|
src = fetchurl {
|
|
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";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|