mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-28 17:35:32 +03:00
26 lines
949 B
Nix
26 lines
949 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, image-transport, cv-bridge, ament-cmake }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-compressed-depth-image-transport";
|
||
|
version = "2.1.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros2-gbp/image_transport_plugins-release/archive/release/dashing/compressed_depth_image_transport/2.1.0-1.tar.gz;
|
||
|
sha256 = "57f39c573f31d88c9eecf3509e7d20b628ae109d8b5d06dd17f6da08862e271c";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ image-transport cv-bridge ];
|
||
|
propagatedBuildInputs = [ image-transport cv-bridge ];
|
||
|
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 ];
|
||
|
};
|
||
|
}
|