1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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>
This commit is contained in:
Patrick Norton
2025-11-24 15:24:38 -05:00
committed by Sharlatan Hellseher
parent 6a9e596032
commit fdb1ef8d1d

View File

@@ -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")