1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: go-github-com-aws-smithy-go: Fix build.

* gnu/packages/golang-web.scm (go-github-com-aws-smithy-go)
[arguments]<test-subdirs>: Run tests only in project root.

Change-Id: I04ab9c8579480ba7d9e7e9db8637ea1f3af78585
This commit is contained in:
Sharlatan Hellseher 2024-12-15 13:22:19 +00:00
parent c80603587b
commit e82afd9a8e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -595,7 +595,11 @@ credentials sources.")
(base32 "1pcq9d154l41c4k23q6ri51ba5i2kc8ihrv4sgkv4q59cw70rspi"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/aws/smithy-go"))
(list
#:import-path "github.com/aws/smithy-go"
;; XXX: It contains a lot of sub packages defined with go.mod, consider
;; to pack them separately.
#:test-subdirs #~(list ".")))
(propagated-inputs
(list go-github-com-jmespath-go-jmespath go-github-com-google-go-cmp))
(home-page "https://github.com/aws/smithy-go")