From a00a3980a6a2ca53f248a9f1986d599ad85ded94 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 13 Dec 2024 17:00:06 +0000 Subject: [PATCH] gnu: go-github-com-rs-zerolog: Fix build. * gnu/packages/golang-xyz.scm (go-github-com-rs-zerolog) [arguments]: 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 a10d5fca50703158ec3636068e1544ff9a3149f2..4bda788143701e10f56ad9a3cf3ad82cad323ed1 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