mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 08:31:07 +03:00
25 lines
795 B
Nix
25 lines
795 B
Nix
![]() |
|
||
|
# Copyright 2023 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-iron-launch-xml";
|
||
|
version = "2.0.1-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/launch-release/archive/release/iron/launch_xml/2.0.1-2.tar.gz";
|
||
|
name = "2.0.1-2.tar.gz";
|
||
|
sha256 = "d3e10b5dd7ae5d7c34a3ffbb168431f5e4dd1cebf49c83d8d5f06936b720bca1";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|