summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/golang-xyz.scm40
1 files changed, 8 insertions, 32 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 086c553bff..f30c641732 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -30155,49 +30155,25 @@ organization}.")
(list
#:skip-build? #t
#:import-path "go4.org"
- #:test-subdirs
- #~(list "bytereplacer/..."
- ;; "cloud/..." ; missing packages
- "ctxutil/..."
- "errorutil/..."
- "fault/..."
- "jsonconfig/..."
- "legal/..."
- "lock/..."
- "media/..."
- "must/..."
- "net/..."
- "net/throttle/..."
- "oauthutil/..."
- "osutil/..."
- "readerutil/..."
- "reflectutil/..."
- "rollsum/..."
- "sort/..."
- "strutil/..."
- "syncutil/..."
- "testing/..."
- "testing/functest/..."
- "types/..."
- ;; "wkfs/..." ; missing packages
- "writerutil/..."
- "xdgdir/...")
+ #:test-flags #~(list "-vet=off")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-examples
(lambda* (#:key import-path #:allow-other-keys)
(with-directory-excursion (string-append "src/" import-path)
(for-each delete-file
- (find-files "." "example.*_test\\.go$"))))))
- #:test-flags #~(list "-vet=off")))
+ (find-files "." "example.*_test\\.go$"))))))))
+ (native-inputs
+ ;; XXX: Remove when cycle is fixed.
+ (list go-github-com-envoyproxy-go-control-plane))
(propagated-inputs
- (list ;; go-cloud-google-com-go
- ;; go-cloud-google-com-go-storage
+ (list go-cloud-google-com-go
+ go-cloud-google-com-go-storage
go-github-com-rwcarlsen-goexif
go-golang-org-x-net
go-golang-org-x-oauth2
go-golang-org-x-sys
- #; go-google-golang-org-api))
+ go-google-golang-org-api))
(home-page "https://github.com/go4org/go4")
(synopsis "Collection of packages for Go programmers")
(description