gnu: Add go-github-com-nicksnyder-go-i18n-v2.

* gnu/packages/golang-xyz.scm (go-github-com-nicksnyder-go-i18n-v2): New
variable.

Change-Id: I721093e2e7b359aa868936160fc7be1ffe7987ec
This commit is contained in:
Sharlatan Hellseher 2025-09-06 23:36:08 +01:00
parent cb802245f9
commit 91513889ca
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -15440,6 +15440,38 @@ through it's psuedoterminal.")
list of sentences.") list of sentences.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-nicksnyder-go-i18n-v2
(package
(name "go-github-com-nicksnyder-go-i18n-v2")
(version "2.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nicksnyder/go-i18n")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "14v4v06j30rsn2y8lss7j5qyfbr7wir7yzpjd8wqh279aq489d2j"))))
(build-system go-build-system)
(arguments
(list
#:skip-build? #t
#:import-path "github.com/nicksnyder/go-i18n/v2"
;; One test fails with error: open active.en.toml: permission denied.
#:test-flags #~(list "-skip" "TestMain/extract")))
(propagated-inputs
(list go-github-com-burntsushi-toml
go-golang-org-x-text
go-gopkg-in-yaml-v3))
(home-page "https://github.com/nicksnyder/go-i18n")
(synopsis "Internationalization and localization for Golang")
(description
"This package provides support for implementing internationalization and
localization of Go code, covering pluralized strings for all 200+ languages in
@acronym{CLDR, Unicode Common Locale Data Repository}.")
(license license:expat)))
(define-public go-github-com-nightlyone-lockfile (define-public go-github-com-nightlyone-lockfile
(package (package
(name "go-github-com-nightlyone-lockfile") (name "go-github-com-nightlyone-lockfile")