mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add go-github-com-kljensen-snowball.
* gnu/packages/golang-xyz.scm (go-github-com-kljensen-snowball): New variable. Change-Id: I4fe3cf6aa912237e1a0d7186f67021136119b628
This commit is contained in:
parent
69d3cc0ef4
commit
e27d0ed332
1 changed files with 25 additions and 0 deletions
|
@ -8755,6 +8755,31 @@ (define-public go-github-com-klauspost-cpuid-v2
|
|||
(list
|
||||
#:import-path "github.com/klauspost/cpuid/v2"))))
|
||||
|
||||
(define-public go-github-com-kljensen-snowball
|
||||
(package
|
||||
(name "go-github-com-kljensen-snowball")
|
||||
(version "0.10.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/kljensen/snowball")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0ldc8hw13jwffhfac3w19033rxg8042jpwnw16l5mnwc0rg8b23l"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/kljensen/snowball"))
|
||||
(home-page "https://github.com/kljensen/snowball")
|
||||
(synopsis "Go implementation of the Snowball stemmers")
|
||||
(description
|
||||
"This package provides a implementation of the
|
||||
@url{http://snowball.tartarus.org/, Snowball stemmer} for natural language
|
||||
processing.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-knz-go-libedit
|
||||
(package
|
||||
(name "go-github-com-knz-go-libedit")
|
||||
|
|
Loading…
Reference in a new issue