summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 13:39:23 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 21:44:22 +0100
commit091a9e106ffee463e2b6672461bf39ffe87e320f (patch)
tree684077633df9b3af6379fc43207b387e9a281e89
parent14849219e7f5e0debd61cbd2afb521b033990b89 (diff)
gnu: go-go4-org: Add all missing inputs.
* gnu/packages/golang-xyz.scm (go-go4-org): [arguments] <test-subdirs>: Run tests for the whole Go module. [propagated-inputs]: Add go-cloud-google-com-go, go-cloud-google-com-go-storage, and go-google-golang-org-api. [native-inputs]: Add go-github-com-envoyproxy-go-control-plane. Change-Id: I70ae7b9a6c43981a9eefbe83d1e3cb3e6ba0bb48 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-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