nix-ros-overlay/distros/foxy/ros2launch/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

24 lines
910 B
Nix

# Copyright 2023 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, pythonPackages, ros2cli, ros2pkg }:
buildRosPackage {
pname = "ros-foxy-ros2launch";
version = "0.11.7-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/foxy/ros2launch/0.11.7-1.tar.gz";
name = "0.11.7-1.tar.gz";
sha256 = "a902fd775def34d1b20bdfcf87f1e39e0b4394b79993048a8490bcb15ae5a71a";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ ament-index-python launch launch-ros ros2cli ros2pkg ];
meta = {
description = ''The launch command for ROS 2 command line tools.'';
license = with lib.licenses; [ asl20 ];
};
}