1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/iron/compressed-depth-image-transport/default.nix

27 lines
958 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, cv-bridge, image-transport }:
buildRosPackage {
pname = "ros-iron-compressed-depth-image-transport";
version = "3.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/image_transport_plugins-release/archive/release/iron/compressed_depth_image_transport/3.1.0-1.tar.gz";
name = "3.1.0-1.tar.gz";
sha256 = "46cb137bc982efd1174c04aa8e90576aea8329fb5921f34bfbe9bbf306cf0772";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
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.";
license = with lib.licenses; [ bsdOriginal ];
};
}