mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
24 lines
910 B
Nix
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 ];
|
|
};
|
|
}
|