2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# 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-jazzy-launch-testing-ament-cmake";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "3.4.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch_testing_ament_cmake/3.4.3-1.tar.gz";
|
|
|
|
name = "3.4.3-1.tar.gz";
|
|
|
|
sha256 = "2047f755a0bcec39277a3db0913b63efc01ab281ecacd68b33cf571a0d5d8bfd";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-copyright launch-testing python-cmake-module ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake-test launch-testing python-cmake-module ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-test launch-testing python-cmake-module ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A package providing cmake functions for running launch tests from the build.";
|
|
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|