1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/eloquent/launch-xml/default.nix

24 lines
803 B
Nix

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