2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, pcl-ros, boost, message-filters, sensor-msgs, eigen-conversions, cob-object-detection-msgs, catkin, pcl, image-transport, cv-bridge, visualization-msgs, roscpp, opencv3 }:
|
2019-08-30 00:06:28 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cob-object-detection-visualizer";
|
|
|
|
version = "0.6.14-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/ipa320/cob_perception_common-release/archive/release/melodic/cob_object_detection_visualizer/0.6.14-1.tar.gz";
|
|
|
|
name = "0.6.14-1.tar.gz";
|
2019-08-30 00:06:28 -04:00
|
|
|
sha256 = "6f69b00121d7cb02ff0da6cbe8867092c3a752238dd84fa3664cb75ff6bf6df7";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-12-09 05:16:46 +00:00
|
|
|
buildInputs = [ pcl-ros boost message-filters sensor-msgs eigen-conversions cob-object-detection-msgs roscpp pcl image-transport cv-bridge visualization-msgs opencv3 ];
|
|
|
|
propagatedBuildInputs = [ pcl-ros sensor-msgs boost message-filters eigen-conversions cob-object-detection-msgs pcl image-transport cv-bridge visualization-msgs roscpp opencv3 ];
|
2019-08-30 00:06:28 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The cob_object_detection_visualizer package'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|