guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit dfb65a6255246d44288be36a759b68b2a354ceac
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Wed May 28 15:21:53 2025 +0100

    gnu: Add go-github-com-cockroachdb-redact.
    
    * gnu/packages/golang-xyz.scm (go-github-com-cockroachdb-redact): New 
variable.
    
    Change-Id: I202832e3da6de9c19d8b02db19737bebbeda5e21
---
 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 f6e2a4ce74..67ca85ad9d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3421,6 +3421,30 @@ locale can be selected.")
 the Go language features.")
     (license license:asl2.0)))
 
+(define-public go-github-com-cockroachdb-redact
+  (package
+    (name "go-github-com-cockroachdb-redact")
+    (version "1.1.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/cockroachdb/redact";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1q6h35nrgsh2ygcvvs4ds9swwzzbh3v7414rvlpsnqq6a1kcskw0"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/cockroachdb/redact"))
+    (home-page "https://github.com/cockroachdb/redact";)
+    (synopsis "Utilities to redact Golang strings for confidentiality")
+    (description
+     "Package redact provides facilities for separating @code{safe} and
+@code{unsafe} pieces of data when logging and constructing error object.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-cockroachdb-tokenbucket
   (package
     (name "go-github-com-cockroachdb-tokenbucket")

Reply via email to