summary refs log blame commit diff
path: root/pkgs/development/libraries/pcl/default.nix
blob: 46e2da18aa1e8c24bbce7e0e6551d33dbb57d473 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                                                          
 

                         
 



                                                                            



                                

                                                                                          
          
                                       
                                                                            
                                       



                                                       
{ stdenv, fetchzip, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4
, libusb1, libpcap, libXt
}:

stdenv.mkDerivation rec {
  name = "pcl-1.7.2";

  src = fetchzip {
    name = name + "-src";
    url = "https://github.com/PointCloudLibrary/pcl/archive/${name}.tar.gz";
    sha256 = "0sm19p6wcls2d9l0vi5fgwqp7l372nh3g7bdin42w31zr8dmz8h8";
  };

  enableParallelBuilding = true;

  buildInputs = [ cmake qhull flann boost vtk eigen pkgconfig qt4 libusb1 libpcap libXt ];

  meta = {
    homepage = http://pointclouds.org/;
    description = "Open project for 2D/3D image and point cloud processing";
    license = stdenv.lib.licenses.bsd3;
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}