guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 651dee33c1d1d024072d5dcf9bd7e4979552fb4c
Author: Giacomo Leidi <[email protected]>
AuthorDate: Sat Jul 18 12:12:51 2026 +0200
gnu: Add erlang-h2.
* gnu/packages/erlang-xyz.scm (erlang-h2): New variable.
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/erlang-xyz.scm | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/erlang-xyz.scm b/gnu/packages/erlang-xyz.scm
index 6dbac08f58..dbcc8af0f3 100644
--- a/gnu/packages/erlang-xyz.scm
+++ b/gnu/packages/erlang-xyz.scm
@@ -1,6 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2024, 2025 Igor Goryachev <[email protected]>
-;;; Copyright © 2025 Giacomo Leidi <[email protected]>
+;;; Copyright © 2025, 2026 Giacomo Leidi <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -197,6 +197,24 @@ for code instrumentation and metrics collection.")
(home-page "https://hexdocs.pm/exometer_core/")
(license license:mpl2.0)))
+(define-public erlang-h2
+ (package
+ (name "erlang-h2")
+ (version "0.11.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "h2" version))
+ (sha256
+ (base32 "0n63z9kn80yvf7sqslw5fqdxhd8jw3q2np7kx9sn7iqd3lv287y6"))))
+ (build-system rebar-build-system)
+ (native-inputs (list erlang-proper))
+ (synopsis "HTTP/2 protocol library for Erlang")
+ (description "This package provides an HTTP/2 protocol library for
+Erlang.")
+ (home-page "https://hex.pm/packages/h2")
+ (license license:asl2.0)))
+
(define-public erlang-luerl
(package
(name "erlang-luerl")