1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/launch/default.nix

24 lines
961 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-mypy, ament-pep257, ament-xmllint, osrf-pycommon, python3Packages }:
buildRosPackage {
pname = "ros-rolling-launch";
version = "3.7.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/rolling/launch/3.7.1-1.tar.gz";
name = "3.7.1-1.tar.gz";
sha256 = "52ab011638f43f66b53db8bd225ac85b07e269ee521b84bf3e444085d67567b1";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 ament-xmllint python3Packages.pytest ];
propagatedBuildInputs = [ ament-index-python osrf-pycommon python3Packages.importlib-metadata python3Packages.lark python3Packages.pyyaml ];
meta = {
description = "The ROS launch tool.";
license = with lib.licenses; [ asl20 ];
};
}