From 6a9e59603284ed1424702cf18efa55717c5e4282 Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 17:36:20 -0500 Subject: [PATCH] gnu: Add go-github-com-spacemonkeygo-monkit-v3. * gnu/packages/golang-xyz.scm (go-github-com-spacemonkeygo-monkit-v3): New variable. Change-Id: I0cc3f323122174edb5eaa976a9170862eddb4e32 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index cc7fbac53b01d82292119be7af57ba041a626bac..d5403849c0d866476f6173157b7d109d6cb93626 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -20861,6 +20861,30 @@ converting them to the @code{time.Duration} type.") implementation.") (license license:expat))) +(define-public go-github-com-spacemonkeygo-monkit-v3 + (package + (name "go-github-com-spacemonkeygo-monkit-v3") + (version "3.0.24") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/spacemonkeygo/monkit") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0lrzj7gb151058k0wdknsrrh02aldhl9w9i9bmv3lcwgaprfdzjl")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/spacemonkeygo/monkit/v3")) + (home-page "https://github.com/spacemonkeygo/monkit") + (synopsis "Flexible code instrumenting and data collection library") + (description + "This package is a flexible process data collection, metrics, monitoring, +instrumentation, and tracing client library for Go.") + (license license:asl2.0))) + (define-public go-github-com-spdx-gordf (package (name "go-github-com-spdx-gordf")