guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 07019c14855e29008475f4f754fe1da27dd4916b
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:10:26 2026 +0000
gnu: Add go-github-com-blevesearch-snowball.
* gnu/packages/golang-xyz.scm (go-github-com-blevesearch-snowball): New
variable.
Change-Id: I03239ed7cb8964b29220e794e9e8307cd45ad507
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 124a1ff486..6678ee33d0 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3379,6 +3379,32 @@ Segmentation as described in
@url{http://www.unicode.org/reports/tr29/,
Unicode Standard Annex #29}.")
(license license:asl2.0)))
+(define-public go-github-com-blevesearch-snowball
+ (package
+ (name "go-github-com-blevesearch-snowball")
+ (version "0.6.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/blevesearch/snowball")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0infs0y0kps7hm255z8x8wq7cnns6c92iasb3k1z2vg80b9wgplf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/blevesearch/snowball"))
+ (home-page "https://github.com/blevesearch/snowball")
+ (synopsis "Go implementation of the Snowball stemmer")
+ (description
+ "This package provides a Go implementation of the
+@url{http://snowball.tartarus.org/, Snowball stemmer} for natural language
+processing. It's an alternative fork of
+@url{https://github.com/kljensen/snowball}.")
+ (license license:expat)))
+
(define-public go-github-com-bmatcuk-doublestar
(package
(name "go-github-com-bmatcuk-doublestar")