gnu: Add elixir-hpack.

* gnu/packages/elixir-web.scm (elixir-hpack): New variable.

Change-Id: I13c143fca2d4ec8f4e7e767731f0c908c4112721
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Giacomo Leidi 2025-09-19 15:46:32 +02:00 committed by Ludovic Courtès
parent 338f0f4fdb
commit 5f9aee1a16
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -73,6 +73,28 @@
(home-page "https://hexdocs.pm/error_message/")
(license license:expat)))
(define-public elixir-hpack
(package
(name "elixir-hpack")
(version "3.0.1")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "hpack" version))
(sha256
(base32 "1gh4p21mlnnbprh7fxk03i53lmbdqsgi0my3r9sv9ivl9i6nm0rq"))))
(build-system mix-build-system)
(synopsis
"Implementation of the
@uref{https://http2.github.io/http2-spec/compression.html,HPack} protocol")
(description
"This package provides @code{elixir-hpack}, an implementation of the
@uref{https://http2.github.io/http2-spec/compression.html,HPack} protocol: a
compression format for efficiently representing HTTP header fields, to be used
in HTTP/2.")
(home-page "https://hexdocs.pm/hpack/")
(license license:expat)))
(define-public elixir-plug-crypto
(package
(name "elixir-plug-crypto")