mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
901 B
Nix
25 lines
901 B
Nix
|
|
# 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-rolling-tracetools-image-pipeline";
|
|
version = "3.0.1-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/rolling/tracetools_image_pipeline/3.0.1-2.tar.gz";
|
|
name = "3.0.1-2.tar.gz";
|
|
sha256 = "eb5c5b5b27da6b2028295af99733adaedb8a8943c2824e4f076b0b68dff464b2";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|