1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/foxy/launch-xml/default.nix

25 lines
798 B
Nix
Raw Normal View History

# Copyright 2020 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-foxy-launch-xml";
version = "0.10.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/foxy/launch_xml/0.10.3-1.tar.gz";
name = "0.10.3-1.tar.gz";
sha256 = "ce7d226882bd4c0caf9e67f4c37d290fc8091b59ec8cd3af7945ae7fad550ec6";
};
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 ];
};
}