1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: go-go-uber-org-fx: Update to 1.23.0.

* gnu/packages/golang-xyz.scm (go-go-uber-org-fx): Update to 1.23.0.
[source] <snippet>: Delete submodule with it's own go.mod to package
separately.
[arguments] <test-flags>: Skip 3 tests.

Change-Id: I1ca93808e6dd343a86bf04184248f2e2d51e4e8d
This commit is contained in:
Sharlatan Hellseher 2024-12-26 22:18:18 +00:00
parent 90e1996ecc
commit 666361cf6a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -11480,7 +11480,7 @@ object dependencies graph during the process startup.")
(define-public go-go-uber-org-fx (define-public go-go-uber-org-fx
(package (package
(name "go-go-uber-org-fx") (name "go-go-uber-org-fx")
(version "1.21.0") (version "1.23.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -11489,11 +11489,25 @@ object dependencies graph during the process startup.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "16pbqmkij02zw6xa4660k905y0r0rc50vyqhg41i2411r68jrdnn")))) (base32 "03m26d2k9gwcdjjmwajz1fnihdjvb46l6c5ws07r8l8skcz1jx16"))
(modules '((guix build utils)))
(snippet
#~(begin
;; Submodules with their own go.mod files and packaged separately:
;;
;; - go.uber.org/fx/tools
(delete-file-recursively "tools")))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
(list (list
#:import-path "go.uber.org/fx")) #:import-path "go.uber.org/fx"
#:test-flags
#~(list "-skip" (string-join
;; Tests require networking set up.
(list "TestNopLoggerOptionString"
"TestRun"
"TestDeepStack")
"|"))))
(native-inputs (native-inputs
(list go-github-com-stretchr-testify)) (list go-github-com-stretchr-testify))
(propagated-inputs (propagated-inputs