2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-11-07 17:17:35 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-xmllint, ament-flake8, launch-ros, launch, pythonPackages, ament-pep257, tracetools-trace, ament-copyright }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tracetools-launch";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.2.8-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing-release/repository/archive.tar.gz?ref=release/dashing/tracetools_launch/0.2.8-1";
|
2019-09-06 12:16:03 -04:00
|
|
|
name = "archive.tar.gz";
|
2019-11-07 17:17:35 -05:00
|
|
|
sha256 = "79e8f22eefe5b15423eb3d57822ef407a03b0bd4a9cca40bae1eeeddc7acac4e";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
buildInputs = [ tracetools-trace launch launch-ros ];
|
2019-11-07 17:17:35 -05:00
|
|
|
checkInputs = [ ament-xmllint ament-flake8 pythonPackages.pytest ament-pep257 ament-copyright ];
|
2019-09-04 17:11:04 -04:00
|
|
|
propagatedBuildInputs = [ tracetools-trace launch launch-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Launch integration for tracing.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|