1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/foxy/perception-pcl/default.nix

27 lines
904 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, pcl-conversions, pcl-msgs, pcl-ros }:
buildRosPackage {
pname = "ros-foxy-perception-pcl";
version = "2.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/perception_pcl-release/archive/release/foxy/perception_pcl/2.2.1-1.tar.gz";
name = "2.2.1-1.tar.gz";
sha256 = "7918bd5cd469966350512c8d9cc70d3c52f3df180e2c38ff05060b4ed7c34da5";
};
buildType = "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 ];
};
}