2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, osrf-pycommon, ament-flake8, rclpy, composition-interfaces, pythonPackages, launch, lifecycle-msgs, ament-pep257, python3Packages, ament-copyright, ament-index-python }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-launch-ros";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.8.7-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/dashing/launch_ros/0.8.7-1.tar.gz";
|
|
|
|
name = "0.8.7-1.tar.gz";
|
|
|
|
sha256 = "06de5fd5c0cb74f314214f08763f7f0e417c8b06c7625caf43eae853308085ce";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
buildInputs = [ osrf-pycommon rclpy launch composition-interfaces python3Packages.pyyaml lifecycle-msgs ament-index-python ];
|
|
|
|
checkInputs = [ ament-flake8 ament-copyright pythonPackages.pytest ament-pep257 ];
|
|
|
|
propagatedBuildInputs = [ osrf-pycommon rclpy launch composition-interfaces python3Packages.pyyaml lifecycle-msgs ament-index-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS specific extensions to the launch tool.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|