diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2026-02-06 02:00:35 +0000 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2026-02-06 14:25:52 -0600 |
| commit | fa0843ddbb414dc59822fa9f921732382e085cc5 (patch) | |
| tree | d2f5ea215d4c10e5b4acb5d4c83eff20e9f91dda /gnu | |
| parent | 65edf46f27717725b58994e3a86d170e4dc893dd (diff) | |
gnu: Add go-github-com-blevesearch-go-faiss.
* gnu/packages/golang-xyz.scm (go-github-com-blevesearch-go-faiss): New
variable.
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5dad9c1381..b0d0172cdd 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -15119,6 +15119,30 @@ and executing an @acronym{FST, finite state transducer}.") (("\\{na, k, ids_ham_knn.data[^\n]*" all) (string-append "faiss::int_maxheap_array_t" all)))))))))))) +(define-public go-github-com-blevesearch-go-faiss + (package + (name "go-github-com-blevesearch-go-faiss") + (version "1.0.27") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/blevesearch/go-faiss") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1y9gf2nbg3gjncs6l9fg4q2sxjildszanb24jhhsmivhwlzhcgzh")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/blevesearch/go-faiss")) + (inputs + (list blevesearch-faiss)) + (home-page "https://github.com/blevesearch/go-faiss") + (synopsis "Go bindings for Faiss") + (description "This package provides Go bindings for faiss, a library for +vector similarity search.") + (license license:expat))) + (define-public go-github-com-blevesearch-segment (package (name "go-github-com-blevesearch-segment") |
