mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
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
This commit is contained in:
parent
b4501ee8bc
commit
1ec0aa1de9
2 changed files with 28 additions and 27 deletions
|
@ -1760,6 +1760,34 @@ accurate testing of your code.")
|
||||||
(with-directory-excursion (string-append "src/" import-path)
|
(with-directory-excursion (string-append "src/" import-path)
|
||||||
(invoke "go" "test" "-v" "./..."))))))))))
|
(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
|
(define-public go-gopkg-in-go-playground-assert-v1
|
||||||
(package
|
(package
|
||||||
(name "go-gopkg-in-go-playground-assert-v1")
|
(name "go-gopkg-in-go-playground-assert-v1")
|
||||||
|
|
|
@ -5179,33 +5179,6 @@ losing type information. The primary intended use is for implementing
|
||||||
configuration languages, but other uses may be possible too.")
|
configuration languages, but other uses may be possible too.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(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-github-com-gologme-log
|
(define-public go-github-com-gologme-log
|
||||||
;; this is the same as v1.2.0, only the LICENSE file changed
|
;; this is the same as v1.2.0, only the LICENSE file changed
|
||||||
(let ((commit "720ba0b3ccf0a91bc6018c9967a2479f93f56a55"))
|
(let ((commit "720ba0b3ccf0a91bc6018c9967a2479f93f56a55"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue