2020-10-23 13:30:31 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-11-25 19:56:04 -05:00
|
|
|
{ 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 }:
|
2020-10-23 13:30:31 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-performance-test-fixture";
|
2020-11-25 19:56:04 -05:00
|
|
|
version = "0.0.6-r1";
|
2020-10-23 13:30:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-25 19:56:04 -05:00
|
|
|
url = "https://github.com/ros2-gbp/performance_test_fixture-release/archive/release/foxy/performance_test_fixture/0.0.6-1.tar.gz";
|
|
|
|
name = "0.0.6-1.tar.gz";
|
|
|
|
sha256 = "bb991825295f8847d1961b384890df1dc2060d038b8a032dd44417fb78557d1f";
|
2020-10-23 13:30:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-11-25 19:56:04 -05:00
|
|
|
checkInputs = [ ament-cmake-google-benchmark ament-lint-auto ament-lint-common ];
|
2020-10-23 13:30:31 +00:00
|
|
|
propagatedBuildInputs = [ ament-cmake-google-benchmark google-benchmark-vendor osrf-testing-tools-cpp ];
|
2020-11-25 19:56:04 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-export-dependencies ament-cmake-export-targets ament-cmake-test ];
|
2020-10-23 13:30:31 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Test fixture and CMake macro for using osrf_testing_tools_cpp with Google Benchmark'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|