summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2026-08-24 09:50:24 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-26 00:31:25 +0100
commit29db8e3145317a1d2691ca70ed991f870c6c36bc (patch)
tree4fbbfb51c8aa26d00b4253e764ec284b2162e17d /gnu
parent743d8a1ec0ecfc4237b1957370a8aed804c9fb61 (diff)
gnu: Add go-github-com-emmansun-base64.
* gnu/packages/golang-crypto.scm (go-github-com-emmansun-base64): New variable. Relates-to: guix/guix!10772 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-crypto.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 63571ab9065..7e54b4d9818 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1484,6 +1484,33 @@ derived keys.")
1484messages.") 1484messages.")
1485 (license license:expat))) 1485 (license license:expat)))
1486 1486
1487(define-public go-github-com-emmansun-base64
1488 (package
1489 (name "go-github-com-emmansun-base64")
1490 (version "0.10.0")
1491 (source
1492 (origin
1493 (method git-fetch)
1494 (uri (git-reference
1495 (url "https://github.com/emmansun/base64")
1496 (commit (string-append "v" version))))
1497 (file-name (git-file-name name version))
1498 (sha256
1499 (base32 "0mkkk9xhc55jfq1nbavb8vivv2xb8sp0l807ci0ak3aimxxjqj9c"))))
1500 (build-system go-build-system)
1501 (arguments
1502 (list
1503 #:import-path "github.com/emmansun/base64"))
1504 (propagated-inputs (list go-golang-org-x-sys))
1505 (home-page "https://github.com/emmansun/base64")
1506 (synopsis "SIMD-accelerated drop-in replacement for Go's encoding/base64")
1507 (description
1508 "Package base64 implements base64 encoding as specified by
1509@url{https://rfc-editor.org/rfc/rfc4648.html, RFC 4648}. This package keeps
1510the same public API and behavior as Go's standard @code{encoding/base64},
1511while using architecture-specific SIMD implementations where available.")
1512 (license license:bsd-3)))
1513
1487(define-public go-github-com-fernet-fernet-go 1514(define-public go-github-com-fernet-fernet-go
1488 (package 1515 (package
1489 (name "go-github-com-fernet-fernet-go") 1516 (name "go-github-com-fernet-fernet-go")