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