summary refs log tree commit diff
path: root/pkgs/development/libraries/pcl/default.nix
blob: 1a3484c2ee5e19f9464f88a8130ced960babb290 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 = {
    homepage = 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;
  };
}