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:
parent
af7d5f27d0
commit
ac8f2391f3
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "pcl-1.6.0";
|
name = "pcl-1.7.2";
|
||||||
|
|
||||||
buildInputs = [ cmake qhull flann boost vtk eigen pkgconfig qt4 libusb1 ];
|
src = fetchzip {
|
||||||
|
name = name + "-src";
|
||||||
src = fetchurl {
|
url = "https://github.com/PointCloudLibrary/pcl/archive/${name}.tar.gz";
|
||||||
url = mirror://sourceforge/pointclouds/PCL-1.6.0-Source.tar.bz2;
|
sha256 = "0sm19p6wcls2d9l0vi5fgwqp7l372nh3g7bdin42w31zr8dmz8h8";
|
||||||
sha256 = "0ip3djcjgynlr9vac6jlcw6kxhg2lm8fc0aqk747a6l0rqvllf1x";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
buildInputs = [ cmake qhull flann boost vtk eigen pkgconfig qt4 libusb1 libpcap libXt ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://pointclouds.org/;
|
homepage = http://pointclouds.org/;
|
||||||
description = "Open project for 2D/3D image and point cloud processing";
|
description = "Open project for 2D/3D image and point cloud processing";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -7810,6 +7810,7 @@ let
|
|||||||
|
|
||||||
pcl = callPackage ../development/libraries/pcl {
|
pcl = callPackage ../development/libraries/pcl {
|
||||||
vtk = vtkWithQt4;
|
vtk = vtkWithQt4;
|
||||||
|
inherit (xorg) libXt;
|
||||||
};
|
};
|
||||||
|
|
||||||
pcre = callPackage ../development/libraries/pcre {
|
pcre = callPackage ../development/libraries/pcre {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user