mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-18 05:18:39 +03:00
24 lines
1,004 B
Nix
24 lines
1,004 B
Nix
![]() |
|
||
|
# 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 ];
|
||
|
};
|
||
|
}
|