1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/performance-test-fixture/default.nix

27 lines
1.3 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-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-rolling-performance-test-fixture";
version = "0.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/performance_test_fixture-release/archive/release/rolling/performance_test_fixture/0.2.0-1.tar.gz";
name = "0.2.0-1.tar.gz";
sha256 = "d2f694a388c3340d76f04db6b37b7abf2f7c8e8a3a9b1973556887434acfd3ca";
};
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 ];
};
}