1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-03 03:28:20 +03:00
nix-ros-overlay/distros/humble/tracetools-image-pipeline/default.nix

26 lines
897 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ament-lint-auto, ament-lint-common, pkg-config }:
buildRosPackage {
pname = "ros-humble-tracetools-image-pipeline";
version = "3.0.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/humble/tracetools_image_pipeline/3.0.5-1.tar.gz";
name = "3.0.5-1.tar.gz";
sha256 = "6c724c1d8a7b4a0ef82bcb1e88edd263beebca8187a30d81ad534cb8c319bff8";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-ros pkg-config ];
checkInputs = [ ament-lint-auto ament-lint-common ];
nativeBuildInputs = [ ament-cmake-ros pkg-config ];
meta = {
description = "LTTng tracing provider wrapper for image_pipeline ROS 2 meta-package.";
license = with lib.licenses; [ asl20 ];
};
}