1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-27 08:55:33 +03:00
nix-ros-overlay/dashing/ros2launch/default.nix

26 lines
987 B
Nix
Raw Normal View History

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