mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 11:14:49 +03:00
25 lines
1 KiB
Nix
25 lines
1 KiB
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-jazzy-launch-testing-examples";
|
||
|
version = "0.19.3-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/jazzy/launch_testing_examples/0.19.3-2.tar.gz";
|
||
|
name = "0.19.3-2.tar.gz";
|
||
|
sha256 = "bc12fae4ad82dc7258811c2286bbc15b865c34e604c2231b441798b5cbfbbb6c";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|