Adding pcl. (Also updating flann, reworking vtk)

This commit is contained in:
Lluís Batlle i Rossell
2013-05-09 12:36:22 +02:00
parent 646868b2e6
commit f1e2c585b6
4 changed files with 40 additions and 4 deletions
@@ -0,0 +1,22 @@
{ stdenv, fetchurl, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4, libusb1 }:
stdenv.mkDerivation {
name = "pcl-1.6.0";
buildInputs = [ cmake qhull flann boost vtk eigen pkgconfig qt4 libusb1 ];
src = fetchurl {
url = mirror://sourceforge/pointclouds/PCL-1.6.0-Source.tar.bz2;
sha256 = "0ip3djcjgynlr9vac6jlcw6kxhg2lm8fc0aqk747a6l0rqvllf1x";
};
enableParallelBuilding = true;
meta = {
homeapge = http://pointclouds.org/;
description = "Open project for 2D/3D image and point cloud processing";
license = "BSD";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}