summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-crypto.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2024-12-26 20:35:28 +0000
committerSharlatan Hellseher <[email protected]>2025-01-21 23:42:24 +0000
commit7568d0b9777e387b00857a095a9d5494995a144c (patch)
tree80773afe4ac1967b422986f10eea86764ee27f01 /gnu/packages/golang-crypto.scm
parenta0525d4193227340267b7989e8d06d0606afd87e (diff)
gnu: Add go-github-com-cloudwego-base64x.
* gnu/packages/golang-crypto.scm (go-github-com-cloudwego-base64x): New variable. Change-Id: Idf698d1c228a1edadb5ae153f02d59e86fd9d5b8
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r--gnu/packages/golang-crypto.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index a5cf97667f..8877fe3380 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -519,6 +519,36 @@ cryptographic algorithms targeting Post-Quantum (PQ) and Elliptic Curve
Cryptography (ECC).")
(license license:bsd-3)))
+(define-public go-github-com-cloudwego-base64x
+ (package
+ (name "go-github-com-cloudwego-base64x")
+ (version "0.1.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cloudwego/base64x")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1lgs28mj5w350vp6pazz2265hx2kab3kbjw7vnk0w1skslxbj8kx"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/cloudwego/base64x"))
+ (native-inputs
+ (list go-github-com-davecgh-go-spew
+ go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-bytedance-sonic-loader
+ go-github-com-klauspost-cpuid-v2))
+ (home-page "https://github.com/cloudwego/base64x")
+ (synopsis "Drop-in replacement of the std @code{encoding/base64} library")
+ (description
+ "This package provides a drop-in replacement of the Golang standard
+@code{encoding/base64} library.")
+ (license (list license:asl2.0 license:asl2.0))))
+
(define-public go-github-com-davidlazar-go-crypto
(package
(name "go-github-com-davidlazar-go-crypto")