1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/tracetools-launch/default.nix

24 lines
922 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-mypy, ament-pep257, ament-xmllint, launch, launch-ros, python3Packages, tracetools-trace }:
buildRosPackage {
pname = "ros-jazzy-tracetools-launch";
version = "8.2.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_tracing-release/archive/release/jazzy/tracetools_launch/8.2.3-1.tar.gz";
name = "8.2.3-1.tar.gz";
sha256 = "51c6e7e455687ed7a98a798c2ebec2d97410ad25cd04c660cd1baeb25d24d2cb";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-mypy ament-pep257 ament-xmllint python3Packages.pytest ];
propagatedBuildInputs = [ launch launch-ros tracetools-trace ];
meta = {
description = "Launch integration for tracing.";
license = with lib.licenses; [ asl20 ];
};
}