gnu: Add elixir-phoenix-ecto.

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

Change-Id: Ie5c2f4c6eb44ccddbd5bb2a0149fad6a23bee761
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Giacomo Leidi 2025-09-24 10:27:02 +02:00 committed by Ludovic Courtès
parent f335020725
commit fbbe9164de
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -366,6 +366,29 @@ having different kinds of processes handle connections.")
(home-page "https://hexdocs.pm/neuron/") (home-page "https://hexdocs.pm/neuron/")
(license license:isc))) (license license:isc)))
(define-public elixir-phoenix-ecto
(package
(name "elixir-phoenix-ecto")
(version "4.6.5")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "phoenix_ecto" version))
(sha256
(base32 "0jwdybzrsbrxjqsqw5pzzf2x8vsw0i2d1bccfhdz61zlxq435v16"))))
(build-system mix-build-system)
(propagated-inputs
(list elixir-ecto
elixir-phoenix-html
elixir-plug
elixir-postgrex))
(synopsis "Phoenix and Ecto integration with support for concurrent
acceptance testing")
(description "This package provides a library that integrates Phoenix with
Ecto, implementing all relevant protocols.")
(home-page "https://hexdocs.pm/phoenix_ecto/")
(license license:expat)))
(define-public elixir-phoenix-html (define-public elixir-phoenix-html
(package (package
(name "elixir-phoenix-html") (name "elixir-phoenix-html")