diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-16 11:02:29 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:38 +0200 |
| commit | f1afc5448b81f97a2745083ab273fd480d25eb47 (patch) | |
| tree | ee9f83d5e5eb864a801f1603403e87b3c5a8b2fe /gnu | |
| parent | b26b50cfec07e8ae933940dcbdfbdce8d6721654 (diff) | |
gnu: Add elixir-ecto.
* gnu/packages/elixir-databases.scm (elixir-ecto): New variable.
Change-Id: I45d6a03a124df87e7550975370a25d117953bd0c
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/elixir-databases.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/elixir-databases.scm b/gnu/packages/elixir-databases.scm index 0c7159218c2..df061304492 100644 --- a/gnu/packages/elixir-databases.scm +++ b/gnu/packages/elixir-databases.scm | |||
| @@ -53,3 +53,23 @@ handling transaction, prepare/execute, cursors and client process | |||
| 53 | describe/encode/decode.") | 53 | describe/encode/decode.") |
| 54 | (home-page "https://hexdocs.pm/db_connection/") | 54 | (home-page "https://hexdocs.pm/db_connection/") |
| 55 | (license license:asl2.0))) | 55 | (license license:asl2.0))) |
| 56 | |||
| 57 | (define-public elixir-ecto | ||
| 58 | (package | ||
| 59 | (name "elixir-ecto") | ||
| 60 | (version "3.13.2") | ||
| 61 | (source | ||
| 62 | (origin | ||
| 63 | (method url-fetch) | ||
| 64 | (uri (hexpm-uri "ecto" version)) | ||
| 65 | (sha256 | ||
| 66 | (base32 "0ghb9a4mgiak6103vks6w013sa7kg8dhirxpwxbgy4q56y8r57b6")))) | ||
| 67 | (build-system mix-build-system) | ||
| 68 | (propagated-inputs (list elixir-decimal elixir-jason erlang-telemetry)) | ||
| 69 | (synopsis | ||
| 70 | "Toolkit for data mapping and language integrated query for Elixir") | ||
| 71 | (description | ||
| 72 | "This package provides a toolkit for data mapping and language integrated query | ||
| 73 | for Elixir.") | ||
| 74 | (home-page "https://hexdocs.pm/ecto/") | ||
| 75 | (license license:asl2.0))) | ||
