libnabo: init at 1.0.6

This commit is contained in:
Henry
2016-09-21 21:27:45 +02:00
parent deb32ec23f
commit 295efa1062
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{stdenv, fetchFromGitHub, cmake, eigen, boost}:
stdenv.mkDerivation rec {
version = "1.0.6";
name = "libnabo-${version}";
src = fetchFromGitHub {
owner = "ethz-asl";
repo = "libnabo";
rev = version;
sha256 = "1pg4vjfq5n7zhjdf7rgvycd7bkk1iwr50fl2dljq43airxz6525w";
};
buildInputs = [cmake eigen boost];
enableParallelBuilding = true;
cmakeFlags = "
-DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3
";
doCheck = true;
checkTarget = "test";
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "A fast K Nearest Neighbor library for low-dimensional spaces";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ cryptix ];
};
}