diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-24 10:24:57 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:19 +0000 |
commit | 1ec0aa1de9c531a459c7dd8db2b2ef4fa17222cf (patch) | |
tree | ee1a69afbca4fed5b27622a3f2965b5b2916acf1 /gnu/packages/golang-check.scm | |
parent | b4501ee8bc809e4b4f9a0f0e4e24fa98902fdf63 (diff) |
gnu: go-gopkg-in-errgo-fmt-errors: Move to golang-check.
* gnu/packages/golang.scm (go-gopkg-in-errgo-fmt-errors): Move from here ...
* gnu/packages/golang-check.scm: ... to here.
Change-Id: I2b5166dd147132d14647e4a9d16ac61df7c7cd6a
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 32f5b8a812..7370a88ab6 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -1760,6 +1760,34 @@ accurate testing of your code.") (with-directory-excursion (string-append "src/" import-path) (invoke "go" "test" "-v" "./...")))))))))) +(define-public go-gopkg-in-errgo-fmt-errors + (package + (name "go-gopkg-in-errgo-fmt-errors") + (version "2.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-errgo/errgo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "065mbihiy7q67wnql0bzl9y1kkvck5ivra68254zbih52jxwrgr2")))) + (build-system go-build-system) + (arguments + (list + #:skip-build? #t + #:import-path "gopkg.in/errgo.v2")) + (native-inputs + (list go-gopkg-in-check-v1)) + (home-page "https://godoc.org/gopkg.in/errgo.v2") + (synopsis "Functions that use the fmt package to format error messages") + (description + "This package is the same as @code{gopkg.in/errgo.v2/errors} except that +it adds convenience functions that use the fmt package to format error +messages.") + (license license:bsd-3))) + (define-public go-gopkg-in-go-playground-assert-v1 (package (name "go-gopkg-in-go-playground-assert-v1") |