3
0
Fork 0
forked from mirrors/nixpkgs

Adding flann

svn path=/nixpkgs/trunk/; revision=26205
This commit is contained in:
Lluís Batlle i Rossell 2011-03-08 09:19:37 +00:00
parent d95300f90f
commit a136bd7968
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{stdenv, fetchurl, unzip, cmake, python}:
stdenv.mkDerivation {
name = "flann-1.6.8";
src = fetchurl {
url = http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.6.8-src.zip;
sha256 = "0ag9k821jy0983gjrfsjnqkl5axklcih0qkpfy72h3643nin0f50";
};
buildInputs = [ unzip cmake python ];
meta = {
homepage = http://people.cs.ubc.ca/~mariusm/flann/;
license = "BSD";
description = "Fast approximate nearest neighbor searches in high dimensional spaces";
};
}

View file

@ -2984,6 +2984,8 @@ let
singlePrecision = true;
};
flann = callPackage ../development/libraries/flann { };
fltk11 = callPackage ../development/libraries/fltk/fltk11.nix { };
fltk20 = callPackage ../development/libraries/fltk { };