2021-05-28 23:33:17 +00:00
|
|
|
|
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, cv-bridge, image-transport }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-galactic-compressed-depth-image-transport";
|
2021-07-23 13:01:27 +00:00
|
|
|
version = "2.3.1-r1";
|
2021-05-28 23:33:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-23 13:01:27 +00:00
|
|
|
url = "https://github.com/ros2-gbp/image_transport_plugins-release/archive/release/galactic/compressed_depth_image_transport/2.3.1-1.tar.gz";
|
|
|
|
name = "2.3.1-1.tar.gz";
|
|
|
|
sha256 = "65640347a63e52460e4cf0d66a6112951840bcdabf34ce54260775c9126c405e";
|
2021-05-28 23:33:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "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 ];
|
|
|
|
};
|
|
|
|
}
|