weaviate: init at 1.19.8

This commit is contained in:
Mostly Void
2023-07-21 12:03:53 -03:00
committed by Anderson Torres
parent c032f4a16c
commit ebf4e87429
2 changed files with 35 additions and 0 deletions
+33
View File
@@ -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 ];
};
}
+2
View File
@@ -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 { };