guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0b6831fdb220602b43894c0a80372172a4250ff4
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:08:16 2026 +0000

    gnu: Add go-github-com-blevesearch-segment.
    
    * gnu/packages/golang-xyz.scm (go-github-com-blevesearch-segment): New
    variable.
    
    Change-Id: Ice3ea18e450e1c5103da3fe151bd8219d48c8a93
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0b98f9a284..124a1ff486 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3354,6 +3354,31 @@ approach to multi-version concurrency control.  It's an 
alternative fork of
 that segment API interface.")
     (license license:asl2.0)))
 
+(define-public go-github-com-blevesearch-segment
+  (package
+    (name "go-github-com-blevesearch-segment")
+    (version "0.9.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/blevesearch/segment";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0y761p1m98kii5ccgfsc96wmlccj41dmg16pa4m0dj03dry130c9"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/blevesearch/segment"))
+    (home-page "https://github.com/blevesearch/segment";)
+    (synopsis "Go Unicode text segmentation library")
+    (description
+     "This package provides a Go library for performing Unicode Text
+Segmentation as described in @url{http://www.unicode.org/reports/tr29/,
+Unicode Standard Annex #29}.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-bmatcuk-doublestar
   (package
     (name "go-github-com-bmatcuk-doublestar")

Reply via email to