From cc850de9ae4523ffdd3d44514d2b632ba9f024e9 Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Sat, 13 Sep 2025 13:39:04 +0200 Subject: [PATCH] gnu: Add elixir-expo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/elixir-xyz.scm (elixir-expo): New variable. Change-Id: I2d3a852def9065b62101392b1659e4d9cde7e2b1 Signed-off-by: Ludovic Courtès --- gnu/packages/elixir-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm index 07c8b4f51554d387f501049fc43aaaa8198919f3..f15dc0b127baa8f4aba2fe6292ca088e3e2ec152 100644 --- a/gnu/packages/elixir-xyz.scm +++ b/gnu/packages/elixir-xyz.scm @@ -420,6 +420,25 @@ Universally Unique Lexicographically Sortable Identifier (ULID).") (home-page "https://hexdocs.pm/ex_ulid/") (license license:asl2.0))) +(define-public elixir-expo + (package + (name "elixir-expo") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (hexpm-uri "expo" version)) + (sha256 + (base32 "0q692ycwn0f5kif55vxhx2bq1swyraypf89n671l9yq08wzzkbgv")))) + (build-system mix-build-system) + (synopsis + "Low-level Gettext file handling") + (description + "This package implements low-level Gettext file handling (.po/.pot/.mo file +writer and parser).") + (home-page "https://hexdocs.pm/expo/") + (license license:asl2.0))) + (define-public elixir-dialyxir (package (name "elixir-dialyxir")