guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit d1f230d9598c6df102d4d2876d4e3ed6f140c7f2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 10 22:47:04 2026 +0000

    gnu: Add go-filippo-io-hpke.
    
    * gnu/packages/golang-crypto.scm (go-filippo-io-hpke): New variable.
    
    Change-Id: Ie507d3d9e78c03fe60494efdf0fd9e277e14cbc7
---
 gnu/packages/golang-crypto.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index a27125a40b..3af33f9f72 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -202,6 +202,32 @@ Go, exposing the necessary APIs to build a wide array of 
higher-level
 primitives.")
     (license license:bsd-3)))
 
+(define-public go-filippo-io-hpke
+  (package
+    (name "go-filippo-io-hpke")
+    (version "0.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/FiloSottile/hpke";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13krc56z39p910qwh87i0dysclz8lz9drjnhqnvzikrk2gdd78y4"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "filippo.io/hpke"))
+    (propagated-inputs
+     (list go-golang-org-x-crypto))
+    (home-page "https://filippo.io/hpke";)
+    (synopsis "Hybrid Public Key Encryption (HPKE) in Golang")
+    (description
+     "This package implements Hybrid Public Key Encryption (HPKE) as defined
+in @url{https://www.rfc-editor.org/rfc/rfc9180.html RFC 9180}.")
+    (license license:bsd-3)))
+
 (define-public go-filippo-io-nistec
   (package
     (name "go-filippo-io-nistec")

Reply via email to