sharlatan pushed a commit to branch go-team
in repository guix.
commit 036d81d15e1fa4b9eadca5c6c5309aa271242e3c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 19 14:57:18 2025 +0000
gnu: Add go-github-com-ipfs-go-ds-measure.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ds-measure): New variable.
Change-Id: I72cc4add7e340c9a0158609f5fc483c1f5d7a146
---
gnu/packages/ipfs.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 74a3ecf216..6d84d7b3ac 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -236,6 +236,33 @@ a two-level directory structure in the local file system,
regardless of the
hierarchy of the keys.")
(license license:expat)))
+(define-public go-github-com-ipfs-go-ds-measure
+ (package
+ (name "go-github-com-ipfs-go-ds-measure")
+ (version "0.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ipfs/go-ds-measure")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14p3681sb1h81qxkwblngvy72yrd73drcvamgc3v7za734l9f54b"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ipfs/go-ds-measure"))
+ (propagated-inputs
+ (list go-github-com-ipfs-go-datastore
+ go-github-com-ipfs-go-metrics-interface))
+ (home-page "https://github.com/ipfs/go-ds-measure")
+ (synopsis "Datastore implementation that keeps metrics on all calls made")
+ (description
+ "Package measure provides a Datastore wrapper that records metrics using
+@url{https://github.com/ipfs/go-metrics-interface}.")
+ (license license:expat)))
+
(define-public go-github-com-ipfs-go-ipfs-blockstore
(package
(name "go-github-com-ipfs-go-ipfs-blockstore")