2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, depth-image-proc, catkin, tf2-ros, rostest, image-proc, nodelet }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-rgbd-launch";
|
|
|
|
version = "2.2.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ros-gbp/rgbd_launch-release/archive/release/melodic/rgbd_launch/2.2.2-0.tar.gz;
|
|
|
|
sha256 = "973d8f054d8b7447e8951b5dc8dc65d860a3ce48431789fee0f582d8d56d7f68";
|
|
|
|
};
|
|
|
|
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ image-proc nodelet depth-image-proc tf2-ros ];
|
2019-03-21 00:14:59 -04:00
|
|
|
checkInputs = [ rostest ];
|
|
|
|
propagatedBuildInputs = [ image-proc nodelet depth-image-proc tf2-ros ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Launch files to open an RGBD device and load all nodelets to
|
|
|
|
convert raw depth/RGB/IR streams to depth images, disparity images,
|
|
|
|
and (registered) point clouds.'';
|
|
|
|
#license = lib.licenses.BSD;
|
|
|
|
};
|
|
|
|
}
|