forked from mirrors/nixpkgs
71cf65cec5
PCL requires a patch to be compatible with QHull 2020.2. The patch has been accepted upstream, but this commit uses a version of the patch from Conda, which has been backported to 1.11.
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, wrapQtAppsHook
|
|
, cmake
|
|
, qhull
|
|
, flann
|
|
, boost
|
|
, vtk
|
|
, eigen
|
|
, pkg-config
|
|
, qtbase
|
|
, libusb1
|
|
, libpcap
|
|
, libXt
|
|
, libpng
|
|
, Cocoa
|
|
, AGL
|
|
, OpenGL
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pcl";
|
|
version = "1.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PointCloudLibrary";
|
|
repo = "pcl";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "1cli2rxqsk6nxp36p5mgvvahjz8hm4fb68yi8cf9nw4ygbcvcwb1";
|
|
};
|
|
|
|
patches = [
|
|
# Support newer QHull versions (2020.2)
|
|
# Backport of https://github.com/PointCloudLibrary/pcl/pull/4540
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/conda-forge/pcl-feedstock/0b1eff402994a3fb891b44659c261e7e85c8d915/recipe/4540.patch";
|
|
sha256 = "0hhvw6ajigzrarn95aicni73zd3sdgnb8rc3wgjrrg19xs84z138";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config cmake wrapQtAppsHook ];
|
|
buildInputs = [
|
|
qhull
|
|
flann
|
|
boost
|
|
eigen
|
|
libusb1
|
|
libpcap
|
|
libpng
|
|
vtk
|
|
qtbase
|
|
libXt
|
|
]
|
|
++ lib.optionals stdenv.isDarwin [ Cocoa AGL ];
|
|
|
|
cmakeFlags = lib.optionals stdenv.isDarwin [
|
|
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://pointclouds.org/";
|
|
description = "Open project for 2D/3D image and point cloud processing";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ viric ];
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|