My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libnabo/default.nix

31 lines
728 B

{lib, stdenv, fetchFromGitHub, cmake, eigen, boost}:
stdenv.mkDerivation rec {
version = "1.0.7";
pname = "libnabo";
src = fetchFromGitHub {
owner = "ethz-asl";
repo = "libnabo";
rev = version;
sha256 = "17vxlmszzpm95vvfdxnm98d5p297i10fyblblj6kf0ynq8r2mpsh";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ eigen boost ];
cmakeFlags = [
"-DEIGEN_INCLUDE_DIR=${eigen}/include/eigen3"
];
doCheck = true;
checkTarget = "test";
meta = with 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 ];
};
}