guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8dcbdd08a0490c16747aff71f0dbfee1b89e5813
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Mon Jan 26 22:05:35 2026 -0300
gnu: Add go-github-com-fernet-fernet-go.
* gnu/packages/golang-crypto.scm (go-github-com-fernet-fernet-go): New
variable.
Change-Id: Ibc192b2d09fc517d017055f5ea911c692aadca43
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 5f51b23ca1..844e8d37a9 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1163,6 +1163,31 @@ derived keys.")
messages.")
(license license:expat)))
+(define-public go-github-com-fernet-fernet-go
+ (package
+ (name "go-github-com-fernet-fernet-go")
+ (version "0.0.0-20240119011108-303da6aec611")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fernet/fernet-go")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1pvc4v4r1sh7zgfps39wvdzh2j9a9fgfwrmhhad5l2sgq15kh70z"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/fernet/fernet-go"))
+ (home-page "https://github.com/fernet/fernet-go")
+ (synopsis "Fernet symmetric encryption for Golang")
+ (description
+ "This package provides a Golang implementation of the Fernet symmetric
+encryption specification. It handles key management, token creation,
+encryption/decryption, and integrity verification.")
+ (license license:expat)))
+
(define-public go-github-com-flynn-noise
(package
(name "go-github-com-flynn-noise")