gnu: Add go-golang-org-rainycape-unidecode.
* gnu/packages/golang.scm (go-golang-org-rainycape-unidecode): New variable.master
parent
2573709cc9
commit
3770bd6526
|
@ -3472,3 +3472,28 @@ efficient space usage.")
|
|||
based on murmurhash.")
|
||||
(home-page "https://github.com/willf/bloom")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public go-golang-org-rainycape-unidecode
|
||||
(let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "go-golang-org-rainycape-unidecode")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rainycape/unidecode")
|
||||
(commit commit)))
|
||||
(file-name (string-append "go-golang-org-rainycape-unidecode-"
|
||||
version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wvzdijd640blwkgmw6h09frkfa04kcpdq87n2zh2ymj1dzla5v5"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "golang.org/rainycape/unidecode"))
|
||||
(home-page "https://github.com/rainycape/unidecode")
|
||||
(synopsis "Unicode transliterator in Golang")
|
||||
(description "Unicode transliterator in Golang - Replaces non-ASCII
|
||||
characters with their ASCII approximations.")
|
||||
(license license:asl2.0))))
|
||||
|
|
Reference in New Issue