1 {lib, stdenv, fetchFromGitHub, cmake}:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-NcewcNQcI1CjMNibRF9HCoE2Ibs0/Hy4eOkJ20W3wLo=";
14 nativeBuildInputs = [ cmake ];
17 "-DBUILD_EXAMPLES=OFF"
24 homepage = "https://github.com/jlblancoc/nanoflann";
25 license = lib.licenses.bsd2;
26 description = "Header only C++ library for approximate nearest neighbor search";
27 platforms = lib.platforms.unix;