2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-test, launch-testing, python-cmake-module }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-launch-testing-ament-cmake";
|
2022-11-04 13:38:03 +00:00
|
|
|
version = "1.0.3-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-11-04 13:38:03 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/humble/launch_testing_ament_cmake/1.0.3-1.tar.gz";
|
|
|
|
name = "1.0.3-1.tar.gz";
|
|
|
|
sha256 = "7b495812abea0138f895590bade846a9f096c9c5feac6d78c51bd2dd8cbed3e1";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-copyright launch-testing python-cmake-module ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-test launch-testing python-cmake-module ];
|
2022-11-04 13:38:03 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A package providing cmake functions for running launch tests from the build.'';
|
|
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|