guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6cb8480d5b2f82b143f5653176b7539173f4fcb4
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 14:48:42 2025 -0500

    gnu: Add go-github-com-protonmail-bcrypt.
    
    * gnu/packages/golang-crypto.scm (go-github-com-protonmail-bcrypt): New
    variable.
    
    Change-Id: I518523fb6405501a207f8036d43167179c403317
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-crypto.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 009358ce2e..29af760ce2 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -2281,6 +2281,30 @@ done by Marc Stevens and Dan Shumow, and can be found at:
 
@@url{https://github.com/cr-marcstevens/sha1collisiondetection,https://github.com/cr-marcstevens/sha1collisiondetection}.";)
     (license license:asl2.0)))
 
+(define-public go-github-com-protonmail-bcrypt
+  (package
+    (name "go-github-com-protonmail-bcrypt")
+    (version "0.0.0-20211005172633-e235017c1baf")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/ProtonMail/bcrypt";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0znxsia69c2p4vgj9qckqq3p06rg2b5qzdm7p7svs3x46bp28s3s"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/ProtonMail/bcrypt"))
+    (home-page "https://github.com/ProtonMail/bcrypt";)
+    (synopsis "Bcrypt hash algorithm in Golang")
+    (description
+     "This package provides a Golang implementation of the bcrypt hash
+algorithm.  It is a fork of github.com/jameskeane/bcrypt.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-protonmail-go-crypto
   (package
     (name "go-github-com-protonmail-go-crypto")

Reply via email to