mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
800 B
Nix
24 lines
800 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, eigen, pcl-ros, roscpp, tf }:
|
|
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";
|
|
propagatedBuildInputs = [ eigen pcl-ros roscpp tf ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''A node which annotates 3D point cloud data with semantic labels.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|