2019-12-09 05:16:46 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, eigen, pcl-ros, roscpp, tf }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-semantic-point-annotator";
|
|
|
|
version = "0.1.28-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/pr2-gbp/pr2_navigation-release/archive/release/melodic/semantic_point_annotator/0.1.28-1.tar.gz";
|
|
|
|
name = "0.1.28-1.tar.gz";
|
|
|
|
sha256 = "283e91edafb9350032916638065c04e42bebbc22cd49e9b5caaf60c4a1f56522";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ eigen pcl-ros roscpp tf ];
|
2019-12-09 05:16:46 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A node which annotates 3D point cloud data with semantic labels.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|