1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-28 01:15:34 +03:00
nix-ros-overlay/dashing/compressed-depth-image-transport/default.nix
2019-09-06 12:16:22 -04:00

26 lines
980 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";
name = "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 ];
};
}