1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 15:40:17 +03:00
nix-ros-overlay/distros/iron/launch-testing-examples/default.nix

25 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2024 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, pythonPackages, rcl-interfaces, rclpy, ros2bag, rosbag2-transport, std-msgs }:
buildRosPackage {
pname = "ros-iron-launch-testing-examples";
version = "0.18.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/iron/launch_testing_examples/0.18.0-2.tar.gz";
name = "0.18.0-2.tar.gz";
sha256 = "0131e64db464be7d823916133be4a98c8aba9a13c7a47fc399150c9c9cc9c28b";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ];
propagatedBuildInputs = [ demo-nodes-cpp launch launch-ros launch-testing launch-testing-ros pythonPackages.pytest rcl-interfaces rclpy ros2bag rosbag2-transport std-msgs ];
meta = {
description = ''Examples of simple launch tests'';
license = with lib.licenses; [ asl20 ];
};
}