gnu: Add go-github-com-cockroachdb-redact.

* gnu/packages/golang-xyz.scm (go-github-com-cockroachdb-redact): New variable.

Change-Id: I202832e3da6de9c19d8b02db19737bebbeda5e21
This commit is contained in:
Sharlatan Hellseher 2025-05-28 15:21:53 +01:00
parent 590e3deb54
commit 17e7a93b59
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")