From 3d76bb9dbae14bf0ab857a76a9064a1a61261d5f Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 10 Jan 2025 21:58:53 +0000 Subject: [PATCH] gnu: Add go-github-com-agonopol-go-stem. * gnu/packages/golang-xyz.scm (go-github-com-agonopol-go-stem): New variable. Change-Id: I53ed5d6b56b7042b2d9d18f84144628a172f68a3 --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 93b4fc384d0..a3bd448bbf6 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -659,6 +659,30 @@ strings, based on the Levenshtein measure.") Distance}.") (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 (package (name "go-github-com-alecthomas-chroma")