From a78954d2319afe5510aed5f22f9343ca61f2b544 Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Sun, 26 Oct 2025 18:15:28 +0000 Subject: [PATCH] gnu: Add go-github-com-hashicorp-logutils. * gnu/packages/golang-xyz.scm (go-github-com-hashicorp-logutils): New variable. Change-Id: Ibb6af4549a782bb451db7d30f6072df4b1a2517e Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5b3a740f95fcca534fb81e30985d7a69a8677b6d..6886ae7b90204c9bd93ce4cb3ce8abd6f340b2f5 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -10341,6 +10341,29 @@ expressing configuration which is easy for both humans and machines to read.") (home-page "https://github.com/hashicorp/hcl") (license license:mpl2.0))) +(define-public go-github-com-hashicorp-logutils + (package + (name "go-github-com-hashicorp-logutils") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/logutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "076wf4sh5p3f953ndqk1cc0x7jhmlqrxak9953rz79rcdw77rjvv")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/hashicorp/logutils")) + (home-page "https://github.com/hashicorp/logutils") + (synopsis "Utilities for better logging for Golang") + (description + "Package logutils augments the standard log package with levels.") + (license license:mpl2.0))) + (define-public go-github-com-hdrhistogram-hdrhistogram-go (package (name "go-github-com-hdrhistogram-hdrhistogram-go")