2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-core, ament-cmake-export-dependencies, launch-testing, launch-testing-ament-cmake, launch-testing-ros, ros2test }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ros-testing";
|
2024-11-22 13:28:00 +00:00
|
|
|
version = "0.8.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-22 13:28:00 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros_testing-release/archive/release/rolling/ros_testing/0.8.0-1.tar.gz";
|
|
|
|
name = "0.8.0-1.tar.gz";
|
|
|
|
sha256 = "6dac482fe12c19911291d3a73f7bd6ad8041a9f9891d7d22b439deb604d3da96";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-core ament-cmake-export-dependencies ];
|
|
|
|
propagatedBuildInputs = [ launch-testing launch-testing-ament-cmake launch-testing-ros ros2test ];
|
|
|
|
nativeBuildInputs = [ ament-cmake launch-testing-ament-cmake ros2test ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The entry point package to launch testing in ROS.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|