2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, launch, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-launch-xml";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "3.4.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch_xml/3.4.3-1.tar.gz";
|
|
|
|
name = "3.4.3-1.tar.gz";
|
|
|
|
sha256 = "6096553b7d78b265d3139c8e7c15990d89e9e88209eb11140da1d778061c6c80";
|
2024-05-24 14:00:52 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|