From d5c3f170b0db03e03f00f0ec3e38f86219b34f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Mon, 1 Dec 2025 19:18:40 +0100 Subject: [PATCH] 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 --- 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 83e33471f933de6d7ad90e0e8b5e30a9681b8f9e..55b7ae6d9c48fa9e16813260c63d653f3c1e0843 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")