Merge pull request #79247 from tomberek/tom/ngt

ngt: init at 1.8.4
This commit is contained in:
Michele Guerini Rocco 2020-02-11 07:49:36 +01:00 committed by GitHub
commit 4d6e3bf127
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -20652,6 +20652,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 { };