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
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-launch-xml";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "3.2.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch_xml/3.2.1-1.tar.gz";
|
|
|
|
name = "3.2.1-1.tar.gz";
|
|
|
|
sha256 = "b0011854e2f67d3817f0214c46351571433f9c70d6a5cb8f53c348483db4543a";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ launch ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''XML frontend for the launch package.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|