~ruther/guix-local

fdb1ef8d1d1299f4962f66a7502e17bcc90e33ad — Patrick Norton 3 months ago 6a9e596
gnu: Add go-github-com-zeebo-errs.

* gnu/packages/golang-xyz.scm (go-github-com-zeebo-errs,
go-github-com-zeebo-errs-v2): New variables.

Change-Id: Ic94385e45e85ed251427af05516f68dcb47aef67
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 43 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +43 -0
@@ 23835,6 23835,49 @@ utilities for cty Golang module.")
     "Package yaml can marshal and unmarshal cty values in YAML format.")
    (license license:asl2.0)))

(define-public go-github-com-zeebo-errs
  (package
    (name "go-github-com-zeebo-errs")
    (version "1.4.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/zeebo/errs")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1bvmqpxr7gk38yl1wz6llwjgd5ys3ls0m150wjmmr61nggb5n7dy"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/zeebo/errs"))
    (home-page "https://github.com/zeebo/errs")
    (synopsis "Simple error package")
    (description
     "This package provides a simple error package with stack traces.")
    (license license:expat)))

(define-public go-github-com-zeebo-errs-v2
  (package
    (inherit go-github-com-zeebo-errs)
    (name "go-github-com-zeebo-errs-v2")
    (version "2.0.5")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/zeebo/errs")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1121d876l002d7vd8816fzymdv90q6x04lcjgxgr0rkczzlzbynp"))))
    (arguments
     (list
      #:import-path "github.com/zeebo/errs/v2"))
    (native-inputs
     (list go-github-com-zeebo-assert))))

(define-public go-github-com-zitadel-logging
  (package
    (name "go-github-com-zitadel-logging")