guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 8728869a58f6aef2d53ba2f1b60ffacd8c1ef464
Author: Sharlatan Hellseher <[email protected]>
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 b3402ecaeb..28a737f497 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3738,6 +3738,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")