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

24 lines
926 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-rolling-tracetools-launch";
version = "8.5.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_tracing-release/archive/release/rolling/tracetools_launch/8.5.0-1.tar.gz";
name = "8.5.0-1.tar.gz";
sha256 = "836a539b37e2a591d34e01de648c0aaede74346809786fa22297cce2700d6a03";
};
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 ];
};
}