2020-06-12 18:02:43 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-06-12 18:02:43 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-mypy, ament-pep257, ament-xmllint, launch, launch-ros, pythonPackages, tracetools-trace }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-tracetools-launch";
|
2021-01-22 13:37:51 +00:00
|
|
|
version = "1.0.5-r2";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-07 13:30:57 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_tracing-release/archive/release/foxy/tracetools_launch/1.0.5-2.tar.gz";
|
|
|
|
name = "1.0.5-2.tar.gz";
|
2021-04-09 14:28:48 -04:00
|
|
|
sha256 = "7789d923e675d776aea16b103bf20e4bb8ca38534ac3f0712b59985e7190dfee";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 ament-xmllint pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ launch launch-ros tracetools-trace ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Launch integration for tracing.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|