guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3ac98cc34444c08f8ad466088c8e96106fb3c134
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 01:54:05 2026 +0000

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

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 486a301737..ababd0e1ba 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15081,6 +15081,28 @@ interface.  This package provides that key-value store 
API interface.")
 and executing an @acronym{FST, finite state transducer}.")
     (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 Unicode Standard Annex #29.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-liyue201-gostl
   (package
     (name "go-github-com-liyue201-gostl")

Reply via email to