nix-ros-overlay/distros/humble/launch-testing-examples/default.nix

24 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, demo-nodes-cpp, launch, launch-ros, launch-testing, launch-testing-ros, python3Packages, rcl-interfaces, rclpy, ros2bag, std-msgs }:
buildRosPackage {
pname = "ros-humble-launch-testing-examples";
version = "0.15.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/humble/launch_testing_examples/0.15.3-1.tar.gz";
name = "0.15.3-1.tar.gz";
sha256 = "b5c9e488d6171ef4a8667827ab42c15e3270f13c1ba5ca5f9fbeb40bfcf98b86";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ];
propagatedBuildInputs = [ demo-nodes-cpp launch launch-ros launch-testing launch-testing-ros python3Packages.pytest rcl-interfaces rclpy ros2bag std-msgs ];
meta = {
description = "Examples of simple launch tests";
license = with lib.licenses; [ asl20 ];
};
}