2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -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-iron-tracetools-image-pipeline";
|
|
|
|
version = "3.0.1-r3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/iron/tracetools_image_pipeline/3.0.1-3.tar.gz";
|
|
|
|
name = "3.0.1-3.tar.gz";
|
|
|
|
sha256 = "1552d0a9c097b8755c309ee16fab45bd385b17735432ef35deb67500cdeafe88";
|
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|