sharlatan pushed a commit to branch go-team in repository guix. commit f532b5bc6619c1c5a42282c87be5bfc9fd70a76a Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sat Feb 22 14:50:44 2025 +0000
gnu: go-golang-org-rainycape-unidecode: Move to golang-xyz. * gnu/packages/golang.scm (go-golang-org-rainycape-unidecode): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: If8a9d030baf44af788d43cb00d87337f7f46f4d2 --- gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++ gnu/packages/golang.scm | 26 -------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 642c466f45..9f2ba9a965 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -18056,6 +18056,32 @@ APIs may be unstable @end itemize") (license license:expat))) +(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 (git-file-name name version)) + (sha256 + (base32 "1wvzdijd640blwkgmw6h09frkfa04kcpdq87n2zh2ymj1dzla5v5")))) + (build-system go-build-system) + (arguments + (list + #: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)))) + (define-public go-google-golang-org-appengine (package (name "go-google-golang-org-appengine") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index bd8c05a77e..04f13f3ab9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1251,32 +1251,6 @@ be performed.") (description "Go wrapper for taglib") (license license:unlicense)))) -(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 (git-file-name name version)) - (sha256 - (base32 "1wvzdijd640blwkgmw6h09frkfa04kcpdq87n2zh2ymj1dzla5v5")))) - (build-system go-build-system) - (arguments - (list - #: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)))) - ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar