2022-06-09 18:50:37 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# 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";
|
2025-03-07 13:16:24 +00:00
|
|
|
version = "3.0.7-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-03-07 13:16:24 +00:00
|
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/humble/tracetools_image_pipeline/3.0.7-1.tar.gz";
|
|
|
|
name = "3.0.7-1.tar.gz";
|
|
|
|
sha256 = "4310c6be9a06fcfaf11050d82d50c1ca415aad0608b8443dee5496def472c136";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake-ros pkg-config ];
|
2022-06-09 18:50:37 -04:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros pkg-config ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "LTTng tracing provider wrapper for image_pipeline ROS 2 meta-package.";
|
2022-06-09 18:50:37 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|