2019-06-16 21:59:06 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
2018-07-17 20:32:29 +02:00
|
|
|
, qhull, flann, boost, vtk, eigen, pkgconfig, qtbase
|
2019-06-19 20:23:50 +02:00
|
|
|
, libusb1, libpcap, libXt, libpng, Cocoa, AGL, OpenGL
|
2015-08-19 23:31:46 +02:00
|
|
|
}:
|
2013-05-09 12:23:21 +02:00
|
|
|
|
2015-08-19 23:31:46 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-23 02:55:34 +02:00
|
|
|
name = "pcl-1.11.0";
|
2013-05-09 12:23:21 +02:00
|
|
|
|
2016-08-02 19:56:58 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PointCloudLibrary";
|
|
|
|
repo = "pcl";
|
|
|
|
rev = name;
|
2020-05-23 02:55:34 +02:00
|
|
|
sha256 = "0nr3j71gh1v8x6wjr7a7xyr0438sw7vf621a5kbw4lmsxbj55k8g";
|
2013-05-09 12:23:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-10-12 07:40:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
buildInputs = [ qhull flann boost eigen libusb1 libpcap
|
|
|
|
libpng vtk qtbase libXt ]
|
2019-06-19 20:23:50 +02:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa AGL ];
|
2017-10-12 07:40:37 +02:00
|
|
|
|
2016-04-16 00:13:55 +02:00
|
|
|
cmakeFlags = stdenv.lib.optionals stdenv.isDarwin [
|
2016-10-06 08:01:46 +02:00
|
|
|
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks"
|
|
|
|
];
|
2016-04-16 00:13:55 +02:00
|
|
|
|
2013-05-09 12:23:21 +02:00
|
|
|
meta = {
|
2020-03-23 03:35:34 +01:00
|
|
|
homepage = "http://pointclouds.org/";
|
2013-05-09 12:23:21 +02:00
|
|
|
description = "Open project for 2D/3D image and point cloud processing";
|
2014-12-21 00:00:35 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2013-05-09 12:23:21 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2016-04-16 00:13:55 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2013-05-09 12:23:21 +02:00
|
|
|
};
|
|
|
|
}
|