me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-leonelquinteros-gotext.

* gnu/packages/golang.scm (go-github-com-leonelquinteros-gotext): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Nicolas Graves 2023-04-23 14:27:41 +02:00 committed by Leo Famulari
parent 8c64e40266
commit 01c9748555
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 36 additions and 0 deletions

View File

@ -1673,6 +1673,42 @@ terminals.")
aid data snapshotting.") aid data snapshotting.")
(license license:isc))) (license license:isc)))
(define-public go-github-com-leonelquinteros-gotext
(package
(name "go-github-com-leonelquinteros-gotext")
(version "1.5.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/leonelquinteros/gotext")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"15zjc7s1p29izagc84andzhnxw17763rax31jqvf9r5fzvlm0ccn"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/leonelquinteros/gotext"))
(propagated-inputs (list go-golang-org-x-tools go-golang-org-x-text))
(home-page "https://github.com/leonelquinteros/gotext")
(synopsis "GNU gettext utilities in Go")
(description "This package implements GNU gettext utilities in Go. It features:
@itemize
@item Implements GNU gettext support in native Go.
@item Complete support for PO files including:
@item Support for MO files.
@item Thread-safe: This package is safe for concurrent use across multiple
goroutines.
@item It works with UTF-8 encoding as it's the default for Go language.
@item Unit tests available.
@item Language codes are automatically simplified from the form en_UK to en if
the first isn't available.
@item Ready to use inside Go templates.
@item Objects are serializable to []byte to store them in cache.
@item Support for Go Modules.
@end itemize")
(license license:expat)))
(define-public go-github-com-pkg-xattr (define-public go-github-com-pkg-xattr
(package (package
(name "go-github-com-pkg-xattr") (name "go-github-com-pkg-xattr")