guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b0c1610622a9dcaa8ee61f895794134713b94406
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 13:58:23 2025 -0500
gnu: Add go-github-com-cronokirby-saferith.
* gnu/packages/golang-crypto.scm (go-github-com-cronokirby-saferith):
New variable.
Change-Id: I53e83b2388abb1d6facc45f61f6c3db63a7c752f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-crypto.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index bd6a8cd239..009358ce2e 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -29,6 +29,7 @@
;;; Copyright © 2025 Roman Scherer <[email protected]>
;;; Copyright © 2025 Sharlatan Hellseher <[email protected]>
;;; Copyright © 2025 Arthur Rodrigues <[email protected]>
+;;; Copyright © 2025 Patrick Norton <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -681,6 +682,30 @@ as well as provide a consistent implementation of image
encryption across
container runtimes and build tools.")
(license license:asl2.0)))
+(define-public go-github-com-cronokirby-saferith
+ (package
+ (name "go-github-com-cronokirby-saferith")
+ (version "0.33.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cronokirby/saferith")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0g510g9zcqp6rjjxlqdv72jsb0m7hmahcia3nvmw5gac1nml7q2q"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/cronokirby/saferith"))
+ (home-page "https://github.com/cronokirby/saferith")
+ (synopsis "Safe arbitrary-sized arithmetic")
+ (description
+ "The purpose of this package is to provide a version of arbitrary sized
+arithmetic, in a safer (i.e. constant-time) way, for cryptography.")
+ (license license:expat)))
+
(define-public go-github-com-davidlazar-go-crypto
(package
(name "go-github-com-davidlazar-go-crypto")