1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: go-github-com-docker-go-connections: Fix bulid.

* gnu/packages/golang.scm (go-github-com-docker-go-connections)
[arguments] <test-flags>: Skip 2 tests.

Change-Id: I0c7df7fefae4c19f5c39367f66982ce4a58dd843
This commit is contained in:
Sharlatan Hellseher 2024-12-29 20:23:41 +00:00
parent d93498d427
commit 995633a597
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2873,7 +2873,16 @@ to interact with distribution components.")
(base32 "0svfa9g4xvbn87l5kiww1jkijmci9g5821wjp81xz1rfp13cqrk8"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/docker/go-connections"))
(list
#:import-path "github.com/docker/go-connections"
#:test-flags
#~(list "-skip"
(string-join
;; Unable to verify certificate 1: x509: certificate signed by
;; unknown authority.
(list "TestConfigClientExclusiveRootPools"
"TestConfigServerExclusiveRootPools")
"|"))))
(home-page "https://github.com/docker/go-connections")
(synopsis "Networking library for Go")
(description