{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "weaviate"; version = "1.21.7"; src = fetchFromGitHub { owner = "weaviate"; repo = "weaviate"; rev = "v${version}"; hash = "sha256-fhBjKmWtbivntgBFmxfG4bQNUvCdP5uWtysOvsSqFuw="; }; vendorHash = "sha256-/ylYXwgJKtkAIvYgSsl8MzBxuxp0Nco3ZR4ZBdmmS+w="; 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 ]; }; }