~ruther/guix-local

91513889ca0e83a88b87b9c402731a4956d07a83 — Sharlatan Hellseher 6 months ago cb80224
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
1 files changed, 32 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +32 -0
@@ 15440,6 15440,38 @@ through it's psuedoterminal.")
list of sentences.")
    (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
  (package
    (name "go-github-com-nightlyone-lockfile")