2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-05-02 16:50:22 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-mypy, ament-pep257, osrf-pycommon, python3Packages, pythonPackages }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-launch";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "3.4.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch/3.4.0-2.tar.gz";
|
|
|
|
name = "3.4.0-2.tar.gz";
|
|
|
|
sha256 = "134aff319d0bc71bc1d05e28fb84eabcec1b9a181579b8fa3f6a869001f6de4c";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2023-05-02 16:50:22 -04:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 pythonPackages.pytest ];
|
2022-12-09 19:20:15 -05: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 ];
|
|
|
|
};
|
|
|
|
}
|