gnu: Add go-github-com-dchest-stemmer.

* gnu/packages/golang-xyz.scm (go-github-com-dchest-stemmer): New variable.

Change-Id: I2359d5f2196017ac4487e7d17a6419ea515e0aac
This commit is contained in:
Sharlatan Hellseher 2025-01-10 21:58:53 +00:00
parent e27d0ed332
commit 5c7dc4b4f6
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3689,6 +3689,30 @@ (define-public go-github-com-dbaggerman-cuba
more complicated parallel cases.")
(license license:expat)))
(define-public go-github-com-dchest-stemmer
(package
(name "go-github-com-dchest-stemmer")
(version "0.0.0-20161207102402-66719a20c4b5")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/dchest/stemmer")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1r2rz8ynmcrkwjk8sq10n6jgxmkfqf2wqy8nvgriyww41pfq5fgn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/dchest/stemmer"))
(home-page "https://github.com/dchest/stemmer")
(synopsis "Stemmer package for Golang")
(description
"Stemmer package provides an interface for stemmers and includes English,
German and Dutch stemmers as sub-packages.")
(license license:bsd-2)))
(define-public go-github-com-deckarep-golang-set
(package
(name "go-github-com-deckarep-golang-set")