2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-02 13:27:09 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, cv-bridge, image-transport }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-compressed-depth-image-transport";
|
2025-02-14 13:45:14 +00:00
|
|
|
version = "4.0.4-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-14 13:45:14 +00:00
|
|
|
url = "https://github.com/ros2-gbp/image_transport_plugins-release/archive/release/jazzy/compressed_depth_image_transport/4.0.4-1.tar.gz";
|
|
|
|
name = "4.0.4-1.tar.gz";
|
|
|
|
sha256 = "da44a60066eff5deb41992b4f822a7f11eab88ef62e8509b9ed74b184f69ebc9";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-08-02 13:27:09 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
2024-05-24 14:00:52 +00:00
|
|
|
propagatedBuildInputs = [ cv-bridge image-transport ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Compressed_depth_image_transport provides a plugin to image_transport for transparently sending
|
|
|
|
depth images (raw, floating-point) using PNG compression.";
|
2024-08-02 13:27:09 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal mit ];
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
}
|