1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add go-github-com-agonopol-go-stem.

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

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

View file

@ -659,6 +659,30 @@ strings, based on the Levenshtein measure.")
Distance}.") Distance}.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-agonopol-go-stem
(package
(name "go-github-com-agonopol-go-stem")
(version "0.0.0-20150630113328-985885018250")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/agonopol/go-stem")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "128qv5s2g13akbsclyi6kyvx52gx20wz81yxkd3qnlfh0f5fqjd0"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/agonopol/go-stem"))
(home-page "https://github.com/agonopol/go-stem")
(synopsis "Word Stemming in Golang")
(description
"This package provides a implementation of the porter stemming algorithm:
http://tartarus.org/~martin/PorterStemmer/index.html.")
(license license:expat)))
(define-public go-github-com-alecthomas-chroma (define-public go-github-com-alecthomas-chroma
(package (package
(name "go-github-com-alecthomas-chroma") (name "go-github-com-alecthomas-chroma")