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-core, ament-cmake-export-dependencies, ament-cmake-export-targets, ament-cmake-google-benchmark, ament-cmake-test, ament-lint-auto, ament-lint-common, google-benchmark-vendor, osrf-testing-tools-cpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-performance-test-fixture";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "0.2.1-r2";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/performance_test_fixture-release/archive/release/jazzy/performance_test_fixture/0.2.1-2.tar.gz";
|
|
|
|
name = "0.2.1-2.tar.gz";
|
|
|
|
sha256 = "11712323a634d344a1d4010b4508126b4dc5f2936dc393932a0436b0becf23bb";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-core ament-cmake-export-dependencies ament-cmake-export-targets ament-cmake-test ];
|
|
|
|
checkInputs = [ ament-cmake-google-benchmark ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-google-benchmark google-benchmark-vendor osrf-testing-tools-cpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-export-dependencies ament-cmake-export-targets ament-cmake-google-benchmark ament-cmake-test ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Test fixture and CMake macro for using osrf_testing_tools_cpp with Google Benchmark";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|