ngt: init at 1.8.4

This commit is contained in:
Thomas Bereknyei 2020-02-10 19:32:42 -05:00
parent 2ec5c4adf9
commit 6c3c1f0c0a
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "NGT";
version = "v1.8.4";
nativeBuildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "yahoojapan";
repo = "NGT";
rev = version;
sha256 = "f2019e7916b81f8aeabc57d682904c8447776bf9ba94525d20265b329aa43eb5";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://github.com/yahoojapan/NGT;
description = "Nearest Neighbor Search with Neighborhood Graph and Tree for High-dimensional Data";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.asl20;
maintainers = with maintainers; [ tomberek ];
};
}

View File

@ -20641,6 +20641,8 @@ in
nedit = callPackage ../applications/editors/nedit { };
ngt = callPackage ../development/libraries/ngt { };
nheko = libsForQt5.callPackage ../applications/networking/instant-messengers/nheko { };
nomacs = libsForQt5.callPackage ../applications/graphics/nomacs { };