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
|
|
|
|
|
2024-11-22 13:28:00 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-test, launch-testing }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-launch-testing-ament-cmake";
|
2025-03-01 18:33:54 +00:00
|
|
|
version = "3.8.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-03-01 18:33:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch_testing_ament_cmake/3.8.0-1.tar.gz";
|
|
|
|
name = "3.8.0-1.tar.gz";
|
|
|
|
sha256 = "46390515e40940fd8264f4df572667d1b245a5f62b6221377f0dc6a4d86d4e83";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-11-22 13:28:00 +00:00
|
|
|
checkInputs = [ ament-cmake-copyright launch-testing ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-test launch-testing ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-test launch-testing ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A package providing cmake functions for running launch tests from the build.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|