1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 00:20:36 +03:00
nix-ros-overlay/distros/rolling/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-rolling-launch-testing-examples";
version = "0.19.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/rolling/launch_testing_examples/0.19.1-1.tar.gz";
name = "0.19.1-1.tar.gz";
sha256 = "dc1cbb18638752a8be7a183a159d6b2217df08602db89dadeff0c31896543028";
};
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 ];
};
}