sharlatan pushed a commit to branch go-team
in repository guix.

commit ddc9376200910d6181af74ab67353d36744a3709
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Dec 13 17:00:06 2024 +0000

    gnu: go-github-com-rs-zerolog: Fix build.
    
    * gnu/packages/golang-xyz.scm (go-github-com-rs-zerolog)
    [arguments]<test-flags>: Skip one test.
    [propagated-inputs]: Add go-golang-org-x-tools.
    
    Change-Id: I1a7d8e276283c7b3669d3eae2ccf34a9a6ad3598
---
 gnu/packages/golang-xyz.scm | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 56cf930f6f..c9cd492484 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -7816,12 +7816,16 @@ Included are the following:
     (build-system go-build-system)
     (arguments
      (list
-      #:import-path "github.com/rs/zerolog"))
+      #:import-path "github.com/rs/zerolog"
+      ;; Unexpected error write unixgram @234fb->/run/systemd/journal/socket:
+      ;; sendmsg: no such file or directory
+      #:test-flags #~(list "-skip" "TestWriteReturnsNoOfWrittenBytes")))
     (propagated-inputs
      (list go-github-com-coreos-go-systemd-v22
            go-github-com-mattn-go-colorable
            go-github-com-pkg-errors
-           go-github-com-rs-xid))
+           go-github-com-rs-xid
+           go-golang-org-x-tools))
     (home-page "https://github.com/rs/zerolog";)
     (synopsis "Zero Allocation JSON Logger")
     (description

Reply via email to