flann: 1.8.4 -> 1.9.1

This commit is contained in:
Robin Gloster 2017-06-02 15:20:10 +02:00
parent cb00af4a2c
commit 1b55c0bc69
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -1,11 +1,13 @@
{stdenv, fetchurl, unzip, cmake, python}:
{ stdenv, fetchFromGitHub, unzip, cmake, python }:
stdenv.mkDerivation {
name = "flann-1.8.4";
name = "flann-1.9.1";
src = fetchurl {
url = http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip;
sha256 = "022w8hph7bli5zbpnk3z1qh1c2sl5hm8fw2ccim651ynn0hr7fyz";
src = fetchFromGitHub {
owner = "mariusmuja";
repo = "flann";
rev = "1.9.1";
sha256 = "13lg9nazj5s9a41j61vbijy04v6839i67lqd925xmxsbybf36gjc";
};
buildInputs = [ unzip cmake python ];