1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-20 09:00:47 +03:00
nix-ros-overlay/melodic/cob-object-detection-visualizer/default.nix

26 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, cob-object-detection-msgs, image-transport, sensor-msgs, cv-bridge, pcl, message-filters, catkin, roscpp, pcl-ros, eigen-conversions, visualization-msgs, opencv3 }:
buildRosPackage {
pname = "ros-melodic-cob-object-detection-visualizer";
version = "0.6.14-r1";
src = fetchurl {
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";
sha256 = "6f69b00121d7cb02ff0da6cbe8867092c3a752238dd84fa3664cb75ff6bf6df7";
};
buildType = "catkin";
buildInputs = [ boost cob-object-detection-msgs image-transport sensor-msgs cv-bridge message-filters pcl roscpp pcl-ros eigen-conversions visualization-msgs opencv3 ];
propagatedBuildInputs = [ boost cob-object-detection-msgs pcl sensor-msgs image-transport message-filters cv-bridge visualization-msgs pcl-ros eigen-conversions roscpp opencv3 ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The cob_object_detection_visualizer package'';
license = with lib.licenses; [ asl20 ];
};
}