sharlatan pushed a commit to branch go-team
in repository guix.
commit ac42af9adfbae1bb6eafc12c4153de458da8a12f
Author: Jean SIMARD <[email protected]>
AuthorDate: Sat Jul 27 13:08:06 2024 +0000
gnu: Add go-github-com-emersion-go-bcrypt.
* gnu/packages/golang-crypto.scm (go-github-com-emersion-go-bcrypt): New
variable.
Change-Id: Ib627f26eebe1e530668d5b8f971d082fb0ebbe77
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-crypto.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 5bd593e801..43b1356d3f 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -22,6 +22,7 @@
;;; Copyright © 2023, 2024 Artyom V. Poptsov <[email protected]>
;;; Copyright © 2024 Jesse Eisses <[email protected]>
;;; Copyright © 2024 Troy Figiel <[email protected]>
+;;; Copyright © 2024 Jean Simard <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -524,6 +525,32 @@ and encrypting JSON Web Tokens (JWT). It relies only on
the standard
library.")
(license license:expat)))
+(define-public go-github-com-emersion-go-bcrypt
+ (package
+ (name "go-github-com-emersion-go-bcrypt")
+ (version "0.0.0-20170822072041-6e724a1baa63")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emersion/go-bcrypt")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1pchrgs05w30iqbh4d6iys4wvlyajsdwchp5mkf59amgsbyjaqgm"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/emersion/go-bcrypt"))
+ (propagated-inputs
+ (list go-golang-org-x-crypto))
+ (home-page "https://github.com/emersion/go-bcrypt")
+ (synopsis "Extract of bcrypt from golang.org/x/crypto/bcrypt")
+ (description
+ "This package provides an extract @code{bcrypt} from
+@code{golang.org/x/crypto/bcrypt}.")
+ (license license:bsd-3)))
+
(define-public go-github-com-emersion-go-pgpmail
(package
(name "go-github-com-emersion-go-pgpmail")