94 lines
1.7 KiB
Nix
94 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
config,
|
|
fetchFromGitHub,
|
|
|
|
# nativeBuildInputs
|
|
cmake,
|
|
libsForQt5,
|
|
pkg-config,
|
|
|
|
# buildInputs
|
|
eigen,
|
|
libXt,
|
|
libpcap,
|
|
libusb1,
|
|
llvmPackages,
|
|
|
|
# nativeBuildInputs
|
|
boost,
|
|
flann,
|
|
libpng,
|
|
libtiff,
|
|
qhull,
|
|
vtk,
|
|
|
|
gitUpdater,
|
|
|
|
cudaSupport ? config.cudaSupport,
|
|
cudaPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pcl";
|
|
version = "1.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PointCloudLibrary";
|
|
repo = "pcl";
|
|
tag = "pcl-${finalAttrs.version}";
|
|
hash = "sha256-UCuQMWGwe+YxeGj0Y6m5IT58NW2lAWN5RqyZnvyFSr4=";
|
|
};
|
|
|
|
# remove attempt to prevent (x86/x87-specific) extended precision use
|
|
# when SSE not detected
|
|
postPatch = lib.optionalString (!stdenv.hostPlatform.isx86) ''
|
|
sed -i '/-ffloat-store/d' cmake/pcl_find_sse.cmake
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
libsForQt5.wrapQtAppsHook
|
|
pkg-config
|
|
] ++ lib.optionals cudaSupport [ cudaPackages.cuda_nvcc ];
|
|
|
|
buildInputs = [
|
|
eigen
|
|
libXt
|
|
libpcap
|
|
libsForQt5.qtbase
|
|
libusb1
|
|
llvmPackages.openmp
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
boost
|
|
flann
|
|
libpng
|
|
libtiff
|
|
qhull
|
|
vtk
|
|
];
|
|
|
|
cmakeFlags = lib.optionals cudaSupport [
|
|
(lib.cmakeBool "WITH_CUDA" true)
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
rev-prefix = "pcl-";
|
|
ignoredVersions = "rc";
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://pointclouds.org/";
|
|
description = "Open project for 2D/3D image and point cloud processing";
|
|
changelog = "https://github.com/PointCloudLibrary/pcl/blob/pcl-${finalAttrs.version}/CHANGES.md";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [
|
|
GaetanLepage
|
|
usertam
|
|
];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
};
|
|
})
|