2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-mypy, ament-pep257, osrf-pycommon, python3Packages }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-launch";
|
2025-04-04 13:36:01 +00:00
|
|
|
version = "3.4.4-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-04-04 13:36:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch/3.4.4-1.tar.gz";
|
|
|
|
name = "3.4.4-1.tar.gz";
|
|
|
|
sha256 = "0780dd57dff6c140df4493c08ee224042e402c37b8e7deaf4a3cd42fb4d71f6c";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2025-01-03 13:42:37 +00:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 python3Packages.pytest ];
|
2024-05-24 14:00:52 +00:00
|
|
|
propagatedBuildInputs = [ ament-index-python osrf-pycommon python3Packages.importlib-metadata python3Packages.lark python3Packages.pyyaml ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The ROS launch tool.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|