pcl: 1.6.0 -> 1.7.2 (unbreaks build)

New deps added: libXt (required), libpcap (optional).

Releases are now at github.
This commit is contained in:
Bjørn Forsman 2015-08-19 23:31:46 +02:00
parent af7d5f27d0
commit ac8f2391f3
2 changed files with 12 additions and 9 deletions

View File

@ -1,23 +1,25 @@
{ stdenv, fetchurl, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4, libusb1 }:
{ stdenv, fetchzip, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4
, libusb1, libpcap, libXt
}:
stdenv.mkDerivation {
name = "pcl-1.6.0";
stdenv.mkDerivation rec {
name = "pcl-1.7.2";
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";
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;
broken = true;
};
}

View File

@ -7810,6 +7810,7 @@ let
pcl = callPackage ../development/libraries/pcl {
vtk = vtkWithQt4;
inherit (xorg) libXt;
};
pcre = callPackage ../development/libraries/pcre {