From c949bf94bbdd507556fd6ca741188c7f5012b2d7 Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Mon, 15 Sep 2025 11:14:50 +0200 Subject: [PATCH] gnu: Add elixir-zstream. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/elixir-xyz.scm (elixir-zstream): New variable. Change-Id: I27c0e9d41a487748dc400937b3307f11cf1f64fe Signed-off-by: Ludovic Courtès --- gnu/packages/elixir-xyz.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm index 91a69e5ef4a715676a2dc29b61d30dad0cc03079..1ec3578810f98d5c1b80162f6dd9b46b3a21daff 100644 --- a/gnu/packages/elixir-xyz.scm +++ b/gnu/packages/elixir-xyz.scm @@ -834,6 +834,24 @@ functional way.") (home-page "https://hexdocs.pm/zest/") (license license:asl2.0))) +(define-public elixir-zstream + (package + (name "elixir-zstream") + (version "0.6.7") + (source + (origin + (method url-fetch) + (uri (hexpm-uri "zstream" version)) + (sha256 + (base32 "0kb3il3z52v4cdbsd8785qxx8qsnfm2d1hb9rcfdmz0cy3h3mi28")))) + (build-system mix-build-system) + (native-inputs + (list elixir-excoveralls)) + (synopsis "Streaming zip file writer and reader") + (description "This package provides a streaming zip file writer and reader.") + (home-page "https://hexdocs.pm/zstream/") + (license license:expat))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar