2023-07-07 13:21:03 +00:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-07-07 13:21:03 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp, ros2launch, std-srvs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-catch-ros2";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "0.2.0-r2";
|
2023-07-07 13:21:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/catch_ros2-release/archive/release/rolling/catch_ros2/0.2.0-2.tar.gz";
|
|
|
|
name = "0.2.0-2.tar.gz";
|
|
|
|
sha256 = "1e82342aaa91a27dd071cc7a5ba79d588a09e83a82d8a7fd42bc5fe32a3ea2f7";
|
2023-07-07 13:21:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ rclcpp ros2launch std-srvs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Catch2 testing framework for ROS 2 unit and integration tests.";
|
2023-07-07 13:21:03 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|