sharlatan pushed a commit to branch go-team
in repository guix.
commit 00b38076aa482ef2a816ac406286f39872dea29d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 12 15:26:39 2025 +0000
gnu: Add go-github-com-gdey-errors.
* gnu/packages/golang-xyz.scm (go-github-com-gdey-errors): New variable.
Change-Id: Ibf17a00c4e83301877900bc8b1d5d8849a80159d
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index cbf178ea9a..1d38d31e5d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5610,6 +5610,30 @@ also favors portability, and includes support for all
POSIX systems.")
(modify-inputs (package-inputs go-github-com-gdamore-tcell)
(prepend go-golang-org-x-term go-golang-org-x-sys))))))
+(define-public go-github-com-gdey-errors
+ (package
+ (name "go-github-com-gdey-errors")
+ (version "0.0.0-20190426172550-8ebd5bc891fb")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gdey/errors")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mg33xckg5i529jnv6jxvmp36innz0xl5gbkmnww9paak5yvfjb3"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/gdey/errors"))
+ (home-page "https://github.com/gdey/errors")
+ (synopsis "Augmentation of std @code{errors} library")
+ (description
+ "This package provides a small error library that augments the errors
+library in go standard library.")
+ (license license:expat)))
+
(define-public go-github-com-gedex-inflector
(package
(name "go-github-com-gedex-inflector")