diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-16 11:08:57 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:39 +0200 |
| commit | 8621ffb6dfcfa20d13a76bd0e3935befec4ae9e5 (patch) | |
| tree | 4d669bc2326746aa84152e348f39f3b2e5913d14 /gnu/packages/elixir-databases.scm | |
| parent | da3a311e6d6c4d59992708ca9754216e8937ef07 (diff) | |
gnu: Add elixir-uniq.
* gnu/packages/elixir-databases.scm (elixir-uniq): New variable.
Change-Id: I01a664802729706ec470c25216508fad78cad844
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 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/elixir-databases.scm b/gnu/packages/elixir-databases.scm index bb6ee033df8..a27d037f0d1 100644 --- a/gnu/packages/elixir-databases.scm +++ b/gnu/packages/elixir-databases.scm | |||
| @@ -150,3 +150,24 @@ implements unified access to tabular data.") | |||
| 150 | provides an Elixir implementation of the MS TDS protocol.") | 150 | provides an Elixir implementation of the MS TDS protocol.") |
| 151 | (home-page "https://hexdocs.pm/tds/") | 151 | (home-page "https://hexdocs.pm/tds/") |
| 152 | (license license:asl2.0))) | 152 | (license license:asl2.0))) |
| 153 | |||
| 154 | (define-public elixir-uniq | ||
| 155 | (package | ||
| 156 | (name "elixir-uniq") | ||
| 157 | (version "0.6.1") | ||
| 158 | (source | ||
| 159 | (origin | ||
| 160 | (method url-fetch) | ||
| 161 | (uri (hexpm-uri "uniq" version)) | ||
| 162 | (sha256 | ||
| 163 | (base32 "05mrzx7g8q5c4jg38pxqcw1x3bysw0i5n4j7d42v6m3hcx6w69k4")))) | ||
| 164 | (build-system mix-build-system) | ||
| 165 | (native-inputs (list elixir-stream-data)) | ||
| 166 | (propagated-inputs (list elixir-ecto)) | ||
| 167 | (synopsis | ||
| 168 | "Provides UUID generation, parsing, and formatting") | ||
| 169 | (description | ||
| 170 | "This package provides UUID generation, parsing, and formatting. Supports RFC | ||
| 171 | 4122, and the v6 draft extension.") | ||
| 172 | (home-page "https://hexdocs.pm/uniq/") | ||
| 173 | (license license:asl2.0))) | ||
