ngt: init at 1.8.4
This commit is contained in:
parent
2ec5c4adf9
commit
6c3c1f0c0a
22
pkgs/development/libraries/ngt/default.nix
Normal file
22
pkgs/development/libraries/ngt/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user