guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d5c3f170b0db03e03f00f0ec3e38f86219b34f0d
Author: Sören Tempel <[email protected]>
AuthorDate: Mon Dec 1 19:18:40 2025 +0100

    gnu: Add go-github-com-gosimple-unidecode.
    
    * gnu/packages/golang-xyz.scm (go-github-com-gosimple-unidecode): New 
variable.
    Change-Id: I0ee66d904b611b5f1926d83ec9e5c1c61b47904a
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 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 83e33471f9..55b7ae6d9c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8525,6 +8525,30 @@ it effectively reuses the JSON struct tags as well as 
the custom JSON methods
 @code{MarshalJSON} and @code{UnmarshalJSON} unlike go-yaml.")
     (license license:expat)))
 
+(define-public go-github-com-gosimple-unidecode
+  (package
+    (name "go-github-com-gosimple-unidecode")
+    (version "1.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/gosimple/unidecode";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1dxdddn744l0s1lr006s2a4k02w6qx8j3k31c7sfflh7wvwzcdzx"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/gosimple/unidecode"))
+    (home-page "https://github.com/gosimple/unidecode";)
+    (synopsis "Unicode transliterator for Golang")
+    (description
+     "Package unidecode implements a unicode transliterator which
+replaces non-ASCII characters with their ASCII approximations.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-git-lfs-go-netrc
   (package
     (name "go-github-com-git-lfs-go-netrc")

Reply via email to