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

25 lines
964 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, launch, launch-ros, launch-xml, launch-yaml, pythonPackages, ros2cli, ros2pkg }:
buildRosPackage {
pname = "ros-rolling-ros2launch";
version = "0.22.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/rolling/ros2launch/0.22.0-1.tar.gz";
name = "0.22.0-1.tar.gz";
sha256 = "f90241be4c37c4f5441a5c811df5c52c8abf3cbc3812f59c306428bb7dcb8bfa";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ ament-index-python launch launch-ros launch-xml launch-yaml ros2cli ros2pkg ];
meta = {
description = ''The launch command for ROS 2 command line tools.'';
license = with lib.licenses; [ asl20 ];
};
}