summary refs log tree commit diff
path: root/pkgs/development/libraries/flann
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-05-09 12:23:21 +0200
committerLluís Batlle i Rossell <viric@viric.name>2013-05-09 12:36:22 +0200
commitf1e2c585b606859a16951f607a60bdb554601bab (patch)
tree4c0dbcaecc9d18fd804913f966728e48ccf7f41d /pkgs/development/libraries/flann
parent646868b2e63425187f8ed9bd93d693bb7aa72e5b (diff)
downloadnixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.tar
nixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.tar.gz
nixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.tar.bz2
nixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.tar.lz
nixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.tar.xz
nixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.tar.zst
nixpkgs-f1e2c585b606859a16951f607a60bdb554601bab.zip
Adding pcl. (Also updating flann, reworking vtk)
Diffstat (limited to 'pkgs/development/libraries/flann')
-rw-r--r--pkgs/development/libraries/flann/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/libraries/flann/default.nix b/pkgs/development/libraries/flann/default.nix
index eaf4ed8836e..4e4391a50f7 100644
--- a/pkgs/development/libraries/flann/default.nix
+++ b/pkgs/development/libraries/flann/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, unzip, cmake, python}:
 
 stdenv.mkDerivation {
-  name = "flann-1.6.8";
+  name = "flann-1.8.4";
   
   src = fetchurl {
-    url = http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.6.8-src.zip;
-    sha256 = "0ag9k821jy0983gjrfsjnqkl5axklcih0qkpfy72h3643nin0f50";
+    url = http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip;
+    sha256 = "022w8hph7bli5zbpnk3z1qh1c2sl5hm8fw2ccim651ynn0hr7fyz";
   };
 
   buildInputs = [ unzip cmake python ];
@@ -14,5 +14,7 @@ stdenv.mkDerivation {
     homepage = http://people.cs.ubc.ca/~mariusm/flann/;
     license = "BSD";
     description = "Fast approximate nearest neighbor searches in high dimensional spaces";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
   };
 }