summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-check.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r--gnu/packages/golang-check.scm13
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index be36e7503f..3061731ad1 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -631,12 +631,25 @@ package, but can be used in other contexts too.")
(build-system go-build-system)
(arguments
'(#:import-path "github.com/golangplus/testing"))
+ (native-inputs
+ (list go-github-com-golangplus-bytes-bootstrap))
(propagated-inputs
(list go-github-com-golangplus-fmt))
(synopsis "Additions to Go's standard testing package")
(description "This package provides additions to Go's stdlib testing.")
(license license:bsd-3)))
+(define-public go-github-com-golangplus-testing-bootstrap
+ (hidden-package
+ (package
+ (inherit go-github-com-golangplus-testing)
+ (arguments
+ (list #:skip-build? #t
+ #:tests? #f
+ #:import-path "github.com/golangplus/testing"))
+ (native-inputs '())
+ (propagated-inputs '()))))
+
(define-public go-github-com-google-gofuzz
(package
(name "go-github-com-google-gofuzz")