mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
24 lines
1 KiB
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, ament-xmllint, demo-nodes-cpp, launch, launch-ros, launch-testing, launch-testing-ros, python3Packages, rcl-interfaces, rclpy, ros2bag, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-launch-testing-examples";
|
|
version = "0.21.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/rolling/launch_testing_examples/0.21.0-1.tar.gz";
|
|
name = "0.21.0-1.tar.gz";
|
|
sha256 = "1497d38311565c49683a2d810fa387aa3664a5efe30f07804304559cc7c42189";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint ];
|
|
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 ];
|
|
};
|
|
}
|