mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 02:20:53 +02:00
gnu: go-github-com-golangplus-testing: Fix tests.
These changes need to be applied together to allow bootstrapping of missing inputs. * gnu/packages/golang-check.scm (go-github-com-golangplus-testing-bootstrap): New variable. (go-github-com-golangplus-testing) [native-inputs]: Add go-github-com-golangplus-bytes-bootstrap. * gnu/packages/golang-xyz.scm (go-github-com-golangplus-bytes): New variable. Change-Id: Ib97363281fc9a169a734a63197db70a3ce8f9d48
This commit is contained in:
parent
baba666a6f
commit
0f510fc044
2 changed files with 49 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue