qdrant: init at 0.9.1 (#188617)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Mostly Void 2022-08-29 03:12:28 +05:30 committed by GitHub
parent 0832fa6632
commit 09aee727ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, rustPlatform
, fetchFromGitHub
, protobuf
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "qdrant";
version = "0.9.1";
src = fetchFromGitHub {
owner = "qdrant";
repo = "qdrant";
rev = "refs/tags/v${version}";
sha256 = "sha256-rOIWiSpAqIUf2V9BMMTZqF/urz754pZV4yHav26dxqY=";
};
cargoSha256 = "sha256-ovHxtOYlzVsALw/4bhL9EcFXaKr6Bg/D0w6OPMCLZoQ=";
nativeBuildInputs = [ protobuf rustPlatform.bindgenHook ];
NIX_CFLAGS_COMPILE = lib.optional stdenv.isDarwin "-faligned-allocation";
meta = with lib; {
description = "Vector Search Engine for the next generation of AI applications";
longDescription = ''
Expects a config file at config/config.yaml with content similar to
https://github.com/qdrant/qdrant/blob/master/config/config.yaml
'';
homepage = "https://github.com/qdrant/qdrant";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}

View file

@ -10185,6 +10185,8 @@ with pkgs;
qarte = libsForQt5.callPackage ../applications/video/qarte { };
qdrant = callPackage ../servers/search/qdrant { };
qlcplus = libsForQt5.callPackage ../applications/misc/qlcplus { };
qnial = callPackage ../development/interpreters/qnial { };