nix-ros-overlay/distros/jazzy/launch/default.nix

24 lines
928 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, osrf-pycommon, python3Packages }:
buildRosPackage {
pname = "ros-jazzy-launch";
version = "3.4.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch-release/archive/release/jazzy/launch/3.4.4-1.tar.gz";
name = "3.4.4-1.tar.gz";
sha256 = "0780dd57dff6c140df4493c08ee224042e402c37b8e7deaf4a3cd42fb4d71f6c";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 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 ];
};
}