guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f7f97b6b98767c58258d89678cc1d014e68c1d3c
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:06:07 2026 +0000
gnu: Add go-github-com-blevesearch-bleve-index-api.
* gnu/packages/golang-xyz.scm (go-github-com-blevesearch-bleve-index-api):
New
variable.
Change-Id: I0fdcfc929761f34fab6c257bd1931649b9aafc54
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2a81fe73dd..ae78656435 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3113,6 +3113,30 @@ based on murmurhash.")
(delete-file-recursively
(string-append "src/" import-path "/examples")))))))))
+(define-public go-github-com-blevesearch-bleve-index-api
+ (package
+ (name "go-github-com-blevesearch-bleve-index-api")
+ (version "1.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/blevesearch/bleve_index_api")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "04lcracjsx2wbgqfm1rj29km0j4cvfnlb2w3lnslgh0l51ca0m7b"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/blevesearch/bleve_index_api"))
+ (home-page "https://github.com/blevesearch/bleve_index_api")
+ (synopsis "Bleve internal index API")
+ (description
+ "This package provides an index API interface for
+@url{https://blevesearch.com/, Bleve} - indexing & search for Go.")
+ (license license:asl2.0)))
+
(define-public go-github-com-bmatcuk-doublestar
(package
(name "go-github-com-bmatcuk-doublestar")