summaryrefslogtreecommitdiff
path: root/gnu/packages/ipfs.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-14 00:46:55 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-15 14:17:40 +0100
commit445fcf19a227402bbeec18b5e09ff6b1969ddf22 (patch)
treea01e1c4fab079aeef4b05e1247fe80da8de7db75 /gnu/packages/ipfs.scm
parentcf41cbef2731d4617443ed894acde7e1fc4bbb94 (diff)
gnu: go-github-com-ipfs-go-log-v2: Update to 2.9.1.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-log-v2): Update to 2.9.1. [propagated-inputs]: Remove go-go-uber-org-multierr. [native-inputs]: Add go-github-com-stretchr-testify. Change-Id: Ic2bc16ea36bd55105bc41f6d549399d8cd348839
Diffstat (limited to 'gnu/packages/ipfs.scm')
-rw-r--r--gnu/packages/ipfs.scm17
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index a4193a5360f..a5c26ff1aff 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -1715,7 +1715,7 @@ basic operations on IPLD objects (traversals, etc).")
1715(define-public go-github-com-ipfs-go-log-v2 1715(define-public go-github-com-ipfs-go-log-v2
1716 (package 1716 (package
1717 (name "go-github-com-ipfs-go-log-v2") 1717 (name "go-github-com-ipfs-go-log-v2")
1718 (version "2.5.1") 1718 (version "2.9.1")
1719 (source 1719 (source
1720 (origin 1720 (origin
1721 (method git-fetch) 1721 (method git-fetch)
@@ -1724,20 +1724,21 @@ basic operations on IPLD objects (traversals, etc).")
1724 (commit (string-append "v" version)))) 1724 (commit (string-append "v" version))))
1725 (file-name (git-file-name name version)) 1725 (file-name (git-file-name name version))
1726 (sha256 1726 (sha256
1727 (base32 "1yh3sw8knpy364h8h8rqw193whnjd6fbc13cxh6zs29z3x2a7aqa")))) 1727 (base32 "16sm3y7n05gjfzc77d38iscq3pdg0kr3p95izxp70y8pfrpfacs5"))))
1728 (build-system go-build-system) 1728 (build-system go-build-system)
1729 (propagated-inputs
1730 (list go-github-com-mattn-go-isatty
1731 go-go-uber-org-multierr
1732 go-go-uber-org-zap))
1733 (arguments 1729 (arguments
1734 (list 1730 (list
1735 #:import-path "github.com/ipfs/go-log/v2")) 1731 #:import-path "github.com/ipfs/go-log/v2"))
1732 (native-inputs
1733 (list go-github-com-stretchr-testify))
1734 (propagated-inputs
1735 (list go-github-com-mattn-go-isatty
1736 go-go-uber-org-zap))
1736 (home-page "https://github.com/ipfs/go-log") 1737 (home-page "https://github.com/ipfs/go-log")
1737 (synopsis "Logging library used by @code{go-ipfs}") 1738 (synopsis "Logging library used by @code{go-ipfs}")
1738 (description 1739 (description
1739 "@code{go-log} wraps @url{https://github.com/uber-go/zap, zap} to 1740 "@code{go-log} wraps @url{https://github.com/uber-go/zap, zap} to provide
1740provide a logging facade. @code{go-log} manages logging instances and allows for 1741a logging facade. @code{go-log} manages logging instances and allows for
1741their levels to be controlled individually.") 1742their levels to be controlled individually.")
1742 (license license:expat))) 1743 (license license:expat)))
1743 1744