forked from mirrors/nixpkgs
Adding flann
svn path=/nixpkgs/trunk/; revision=26205
This commit is contained in:
parent
d95300f90f
commit
a136bd7968
18
pkgs/development/libraries/flann/default.nix
Normal file
18
pkgs/development/libraries/flann/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -2984,6 +2984,8 @@ let
|
|||
singlePrecision = true;
|
||||
};
|
||||
|
||||
flann = callPackage ../development/libraries/flann { };
|
||||
|
||||
fltk11 = callPackage ../development/libraries/fltk/fltk11.nix { };
|
||||
|
||||
fltk20 = callPackage ../development/libraries/fltk { };
|
||||
|
|
Loading…
Reference in a new issue