~ruther/guix-local

9f2cf24a7acb90ffae33b554309b615b6a1f7e05 — Giacomo Leidi 6 months ago 2a7d1f9
gnu: Add elixir-accessible.

* gnu/packages/elixir-xyz.scm (elixir-accessible): New variable.

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

M gnu/packages/elixir-xyz.scm
M gnu/packages/elixir-xyz.scm => gnu/packages/elixir-xyz.scm +20 -0
@@ 1,6 1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Pierre-Henry Fröhring <phfrohring@deeplinks.com>
;;; Copyright © 2024 Igor Goryachev <igor@goryachev.org>
;;; Copyright © 2025 Giacomo Leidi <goodoldpaul@autistici.org>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 150,6 151,25 @@ https://github.com/synrc/fs.")
    (home-page "https://hexdocs.pm/file_system/")
    (license license:wtfpl2)))

(define-public elixir-accessible
  (package
    (name "elixir-accessible")
    (version "0.3.0")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri "accessible" version))
       (sha256
        (base32 "15pjj1gwc8y18di224yn5g02kxvlardld24a16wzg0mb2431p88k"))))
    (build-system mix-build-system)
    (native-inputs
     (list elixir-excoveralls))
    (synopsis "Dead-simple Access behaviour for custom structs")
    (description "This package-provides @code{elixir-accessible}, a library
providing @code{Access} behaviour for custom structs.")
    (home-page "https://hexdocs.pm/accessible/")
    (license license:expat)))

(define-public elixir-bunt
  (package
    (name "elixir-bunt")