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

24 lines
1,004 B
Nix
Raw Normal View History

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