diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-16 11:08:05 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:39 +0200 |
| commit | da3a311e6d6c4d59992708ca9754216e8937ef07 (patch) | |
| tree | 5264bebdf7320fdbbb0944e6dedf4aaccb36ca11 /gnu/packages/elixir-databases.scm | |
| parent | c97ac4944f83c1d241ca5c5618a9895fe060e8d3 (diff) | |
gnu: Add elixir-tds.
* gnu/packages/elixir-databases.scm (elixir-tds): New variable.
Change-Id: I1ecb0d8f6006e6c847a8c04a1c2b4d792bb7a2ad
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/elixir-databases.scm')
| -rw-r--r-- | gnu/packages/elixir-databases.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/elixir-databases.scm b/gnu/packages/elixir-databases.scm index b027d11556c..bb6ee033df8 100644 --- a/gnu/packages/elixir-databases.scm +++ b/gnu/packages/elixir-databases.scm | |||
| @@ -128,3 +128,25 @@ configuration-driven @code{Ecto} schema extensibility.") | |||
| 128 | implements unified access to tabular data.") | 128 | implements unified access to tabular data.") |
| 129 | (home-page "https://hexdocs.pm/table/") | 129 | (home-page "https://hexdocs.pm/table/") |
| 130 | (license license:asl2.0))) | 130 | (license license:asl2.0))) |
| 131 | |||
| 132 | (define-public elixir-tds | ||
| 133 | (package | ||
| 134 | (name "elixir-tds") | ||
| 135 | (version "2.3.5") | ||
| 136 | (source | ||
| 137 | (origin | ||
| 138 | (method url-fetch) | ||
| 139 | (uri (hexpm-uri "tds" version)) | ||
| 140 | (sha256 | ||
| 141 | (base32 "1wk20rk1fjh16swlkiyl3fs91lj4w4dk77l5z77vp12mvpsm1qsj")))) | ||
| 142 | (build-system mix-build-system) | ||
| 143 | (propagated-inputs | ||
| 144 | (list elixir-db-connection elixir-decimal elixir-jason | ||
| 145 | elixir-table)) | ||
| 146 | (synopsis | ||
| 147 | "Elixir implementation of the MS TDS protocol") | ||
| 148 | (description | ||
| 149 | "This package implements a Microsoft SQL Server client. More generally it | ||
| 150 | provides an Elixir implementation of the MS TDS protocol.") | ||
| 151 | (home-page "https://hexdocs.pm/tds/") | ||
| 152 | (license license:asl2.0))) | ||
