~ruther/guix-local

03957954937bb3139172451494706be7d3566295 — Giacomo Leidi 7 months ago eff0f4e
gnu: Add elixir-cldr-utils.

* gnu/packages/i18n.scm: New file.
(elixir-cldr-utils): New variable.
* gnu/local.mk: Add it.

Change-Id: Id94515d19af849b852c3b78515b5b0027d151b9f
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2 files changed, 50 insertions(+), 0 deletions(-)

M gnu/local.mk
A gnu/packages/elixir-i18n.scm
M gnu/local.mk => gnu/local.mk +1 -0
@@ 262,6 262,7 @@ GNU_SYSTEM_MODULES =				\
  %D%/packages/elf.scm				\
  %D%/packages/elixir.scm			\
  %D%/packages/elixir-databases.scm		\
  %D%/packages/elixir-i18n.scm		\
  %D%/packages/elixir-markup.scm		\
  %D%/packages/elixir-xyz.scm			\
  %D%/packages/elm.scm				\

A gnu/packages/elixir-i18n.scm => gnu/packages/elixir-i18n.scm +49 -0
@@ 0,0 1,49 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2025 Giacomo Leidi <goodoldpaul@autistici.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages elixir-i18n)
  #:use-module (gnu packages erlang)
  #:use-module (gnu packages elixir-markup)
  #:use-module (gnu packages elixir-xyz)
  #:use-module (guix build-system mix)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix gexp)
  #:use-module ((guix licenses)
                #:prefix license:)
  #:use-module (guix packages))

(define-public elixir-cldr-utils
  (package
    (name "elixir-cldr-utils")
    (version "2.28.3")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri "cldr_utils" version))
       (sha256
        (base32 "1dgzaxfj0whv2rjkf57jnzkl63az50wypzjwcwnz31yilpckq220"))))
    (build-system mix-build-system)
    (propagated-inputs (list elixir-castore erlang-certifi elixir-decimal))
    (synopsis
     "Helpers for @code{ex_cldr}")
    (description
     "@code{Map}, @code{Calendar}, @code{Digits}, @code{Decimal}, @code{HTTP},
@code{Macro}, @code{Math}, and @code{String} helpers for @code{ex_cldr}.")
    (home-page "https://hexdocs.pm/cldr_utils/")
    (license license:asl2.0)))