mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
806 B
Nix
24 lines
806 B
Nix
|
|
# Copyright 2021 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-galactic-launch-xml";
|
|
version = "0.17.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/galactic/launch_xml/0.17.0-2.tar.gz";
|
|
name = "0.17.0-2.tar.gz";
|
|
sha256 = "5578e313f916bd281676442735cae3eabef572d2cc6ab23d96ac8dcfce132a5e";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|