weaviate: init at 1.19.8
This commit is contained in:
committed by
Anderson Torres
parent
c032f4a16c
commit
ebf4e87429
@@ -0,0 +1,33 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "weaviate";
|
||||
version = "1.19.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "weaviate";
|
||||
repo = "weaviate";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-rSv6ERVReWMt05C70a8i+hgTF2JGvcSkydex/2Vp+80=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-27YbjTtFaD5nMkcTXeAR/vZPWgG5qRvdnoNv6S7/SOI=";
|
||||
|
||||
subPackages = [ "cmd/weaviate-server" ];
|
||||
|
||||
ldflags = [ "-w" "-extldflags" "-static" ];
|
||||
|
||||
postInstall = ''
|
||||
ln -s $out/bin/weaviate-server $out/bin/weaviate
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "The ML-first vector search engine";
|
||||
homepage = "https://github.com/semi-technologies/weaviate";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
};
|
||||
}
|
||||
@@ -14415,6 +14415,8 @@ with pkgs;
|
||||
|
||||
wdisplays = callPackage ../tools/graphics/wdisplays { };
|
||||
|
||||
weaviate = callPackage ../servers/search/weaviate { };
|
||||
|
||||
webalizer = callPackage ../tools/networking/webalizer { };
|
||||
|
||||
wget = callPackage ../tools/networking/wget { };
|
||||
|
||||
Reference in New Issue
Block a user