mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
900 B
Nix
23 lines
900 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, proj, ecto-opencv, pcl-ros, object-recognition-core, ecto }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-object-recognition-transparent-objects";
|
|
version = "0.4.3";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/object_recognition_transparent_objects-release/archive/release/kinetic/object_recognition_transparent_objects/0.4.3-0.tar.gz;
|
|
sha256 = "547e753c67f40c949267ee6561e089c8107c009641abb060f9b2798b98b408a5";
|
|
};
|
|
|
|
buildInputs = [ proj object-recognition-core ecto pcl-ros ];
|
|
propagatedBuildInputs = [ proj object-recognition-core ecto-opencv pcl-ros ecto ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''A technique to recognize and estimate poses of transparent objects'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|