mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
25 lines
902 B
Nix
25 lines
902 B
Nix
|
|
# Copyright 2025 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 = "6.0.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/rolling/tracetools_image_pipeline/6.0.10-1.tar.gz";
|
|
name = "6.0.10-1.tar.gz";
|
|
sha256 = "117075e6272985424d0b42c762af4f9d00dd0fc53744b29fafe09efaf523446c";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|