Adding pcl. (Also updating flann, reworking vtk)
This commit is contained in:
parent
646868b2e6
commit
f1e2c585b6
@ -1,11 +1,11 @@
|
|||||||
{stdenv, fetchurl, unzip, cmake, python}:
|
{stdenv, fetchurl, unzip, cmake, python}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "flann-1.6.8";
|
name = "flann-1.8.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.6.8-src.zip;
|
url = http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip;
|
||||||
sha256 = "0ag9k821jy0983gjrfsjnqkl5axklcih0qkpfy72h3643nin0f50";
|
sha256 = "022w8hph7bli5zbpnk3z1qh1c2sl5hm8fw2ccim651ynn0hr7fyz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ unzip cmake python ];
|
buildInputs = [ unzip cmake python ];
|
||||||
@ -14,5 +14,7 @@ stdenv.mkDerivation {
|
|||||||
homepage = http://people.cs.ubc.ca/~mariusm/flann/;
|
homepage = http://people.cs.ubc.ca/~mariusm/flann/;
|
||||||
license = "BSD";
|
license = "BSD";
|
||||||
description = "Fast approximate nearest neighbor searches in high dimensional spaces";
|
description = "Fast approximate nearest neighbor searches in high dimensional spaces";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
22
pkgs/development/libraries/pcl/default.nix
Normal file
22
pkgs/development/libraries/pcl/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -16,12 +16,20 @@ stdenv.mkDerivation rec {
|
|||||||
url = "${meta.homepage}files/release/${majorVersion}/vtk-${version}.tar.gz";
|
url = "${meta.homepage}files/release/${majorVersion}/vtk-${version}.tar.gz";
|
||||||
md5 = "a0363f78910f466ba8f1bd5ab5437cb9";
|
md5 = "a0363f78910f466ba8f1bd5ab5437cb9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake mesa libX11 xproto libXt ]
|
buildInputs = [ cmake mesa libX11 xproto libXt ]
|
||||||
++ optional useQt4 qt4;
|
++ optional useQt4 qt4;
|
||||||
|
|
||||||
cmakeFlags = optional useQt4
|
# Shared libraries don't work, because of rpath troubles with the current
|
||||||
|
# nixpkgs camke approach. It wants to call a binary at build time, just
|
||||||
|
# built and requiring one of the shared objects.
|
||||||
|
# At least, we use -fPIC for other packages to be able to use this in shared
|
||||||
|
# objects.
|
||||||
|
cmakeFlags = [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" ] ++ optional useQt4
|
||||||
[ "-DVTK_USE_QT:BOOL=ON" ];
|
[ "-DVTK_USE_QT:BOOL=ON" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Open source libraries for 3D computer graphics, image processing and visualization";
|
description = "Open source libraries for 3D computer graphics, image processing and visualization";
|
||||||
homepage = http://www.vtk.org/;
|
homepage = http://www.vtk.org/;
|
||||||
|
@ -4824,6 +4824,10 @@ let
|
|||||||
|
|
||||||
pangoxsl = callPackage ../development/libraries/pangoxsl { };
|
pangoxsl = callPackage ../development/libraries/pangoxsl { };
|
||||||
|
|
||||||
|
pcl = callPackage ../development/libraries/pcl {
|
||||||
|
vtk = vtkWithQt4;
|
||||||
|
};
|
||||||
|
|
||||||
pcre = callPackage ../development/libraries/pcre {
|
pcre = callPackage ../development/libraries/pcre {
|
||||||
unicodeSupport = config.pcre.unicode or true;
|
unicodeSupport = config.pcre.unicode or true;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user