2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, pcl-conversions, pcl-msgs, pcl-ros }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-perception-pcl";
|
2024-11-15 13:25:01 +00:00
|
|
|
version = "2.6.2-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-15 13:25:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/perception_pcl-release/archive/release/jazzy/perception_pcl/2.6.2-1.tar.gz";
|
|
|
|
name = "2.6.2-1.tar.gz";
|
|
|
|
sha256 = "3399dffaf8dc1676702ad743ed85e00a4c7c199a8857bed6d9da6129adbc6b58";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ pcl-conversions pcl-msgs pcl-ros ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "PCL (Point Cloud Library) ROS interface stack. PCL-ROS is the preferred
|
|
|
|
bridge for 3D applications involving n-D Point Clouds and 3D geometry
|
|
|
|
processing in ROS.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|