1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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 <sharlatanus@gmail.com>
This commit is contained in:
Arun Isaac
2026-02-08 21:06:07 +00:00
committed by Sharlatan Hellseher
parent cd3fe6b407
commit f7f97b6b98

View File

@@ -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")