2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "3.7.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch_testing_ament_cmake/3.7.1-1.tar.gz";
|
|
|
|
name = "3.7.1-1.tar.gz";
|
|
|
|
sha256 = "dd4785211fbb91c2600fa6ea2804bc8173da8c291b50a388b0bd6f9272326f49";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|