gnu: go-golang-org-rainycape-unidecode: Improve style.

* gnu/packages/golang.scm (go-golang-org-rainycape-unidecode) [source]
<file-name>: Adjust it to use GIT-FILE-NAME.
[arguments]: Use list style.
[description]: Adjust fill-column.

Change-Id: I11d1a3cb0dfc6c2bb5d8012e2274eacb65e34bc4
This commit is contained in:
Sharlatan Hellseher 2025-02-22 14:21:29 +00:00
parent b1e03662f5
commit 935f548d0d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1257,23 +1257,24 @@ be performed.")
(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"))))
(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
`(#:import-path "golang.org/rainycape/unidecode"))
(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.")
(description
"Unicode transliterator in Golang - Replaces non-ASCII characters with
their ASCII approximations.")
(license license:asl2.0))))
(define-public go-github-com-akosmarton-papipes