diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index d5403849c0..e476a45bba 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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")