guix_mirror_bot pushed a commit to branch master
in repository guix.

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

    gnu: Add go-github-com-protonmail-gopenpgp-v2.
    
    * gnu/packages/golang-web.scm (go-github-com-protonmail-gopenpgp-v2):
    New variable.
    
    Change-Id: Ie5a79f0181a7f18366f45424737543b39a602643
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 26ec334329..c65ad7fd48 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -11456,6 +11456,38 @@ changes.")
     (description "This package provides a parser for MIME messages.")
     (license license:expat)))
 
+(define-public go-github-com-protonmail-gopenpgp-v2
+  (package
+    (name "go-github-com-protonmail-gopenpgp-v2")
+    (version "2.9.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/ProtonMail/gopenpgp";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ky3hrpdimn0k28h6llp3zj6hdm3wdrcq6gnff3zzrzagybly9w4"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:import-path "github.com/ProtonMail/gopenpgp/v2"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-pkg-errors
+           go-github-com-protonmail-go-crypto
+           go-github-com-protonmail-go-mime
+           go-golang-org-x-crypto))
+    (home-page "https://github.com/ProtonMail/gopenpgp";)
+    (synopsis "High-level OpenPGP library for Golang")
+    (description
+     "This package is a high-level OpenPGP library built on top of the
+Golang crypto library.")
+    (license license:expat)))
+
 (define-public go-github-com-puerkitobio-goquery
   (package
     (name "go-github-com-puerkitobio-goquery")

Reply via email to