guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 34e857caa50810386d1a883754101b7d5c100a2e
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 01:55:55 2026 +0000

    gnu: Add go-github-com-blevesearch-snowballstem.
    
    * gnu/packages/golang-xyz.scm (go-github-com-blevesearch-snowballstem): 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 ababd0e1ba..6c817815c1 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15103,6 +15103,28 @@ and executing an @acronym{FST, finite state 
transducer}.")
 Text Segmentation as described in Unicode Standard Annex #29.")
     (license license:asl2.0)))
 
+(define-public go-github-com-blevesearch-snowballstem
+  (package
+    (name "go-github-com-blevesearch-snowballstem")
+    (version "0.9.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/blevesearch/snowballstem";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1yzglihjjn588xmmkaawqhc95pkk1cyc4bq7ipw7jqfw2np1f2rm"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/blevesearch/snowballstem"))
+    (home-page "https://github.com/blevesearch/snowballstem";)
+    (synopsis "Go stemmers generated by the Snowball project")
+    (description "This package provides Go stemmers generated by the Snowball
+project.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-liyue201-gostl
   (package
     (name "go-github-com-liyue201-gostl")

Reply via email to