mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
24 lines
1,023 B
Nix
24 lines
1,023 B
Nix
|
|
# 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, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-launch-testing-examples";
|
|
version = "0.18.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/iron/launch_testing_examples/0.18.2-1.tar.gz";
|
|
name = "0.18.2-1.tar.gz";
|
|
sha256 = "081091d1827bfaf2579fc7539f0ac8fdc764b7526d0268d975d97fa507e6a4b6";
|
|
};
|
|
|
|
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 std-msgs ];
|
|
|
|
meta = {
|
|
description = "Examples of simple launch tests";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|