diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-16 11:10:10 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:39 +0200 |
| commit | de98e788d56eb4aa95603a2cd9dde556f6b2c7a1 (patch) | |
| tree | 801d9a29e2116eceef22f343d8461d235d51cd12 /gnu/packages/elixir-databases.scm | |
| parent | 8621ffb6dfcfa20d13a76bd0e3935befec4ae9e5 (diff) | |
gnu: Add elixir-uuidv7.
* gnu/packages/elixir-databases.scm (elixir-uuidv7): New variable.
Change-Id: I8321074cf6e1cdc06e29810e0dbd4cdaade73759
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 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/elixir-databases.scm b/gnu/packages/elixir-databases.scm index a27d037f0d1..8db5af913dd 100644 --- a/gnu/packages/elixir-databases.scm +++ b/gnu/packages/elixir-databases.scm | |||
| @@ -171,3 +171,22 @@ provides an Elixir implementation of the MS TDS protocol.") | |||
| 171 | 4122, and the v6 draft extension.") | 171 | 4122, and the v6 draft extension.") |
| 172 | (home-page "https://hexdocs.pm/uniq/") | 172 | (home-page "https://hexdocs.pm/uniq/") |
| 173 | (license license:asl2.0))) | 173 | (license license:asl2.0))) |
| 174 | |||
| 175 | (define-public elixir-uuidv7 | ||
| 176 | (package | ||
| 177 | (name "elixir-uuidv7") | ||
| 178 | (version "1.0.0") | ||
| 179 | (source | ||
| 180 | (origin | ||
| 181 | (method url-fetch) | ||
| 182 | (uri (hexpm-uri "uuidv7" version)) | ||
| 183 | (sha256 | ||
| 184 | (base32 "1g2c8imkk7pgcvc5ns2v1b0zils3ai1yym4s3a5psvs511qk7k8f")))) | ||
| 185 | (build-system mix-build-system) | ||
| 186 | (propagated-inputs (list elixir-ecto)) | ||
| 187 | (synopsis "UUID v7 implementation and @code{Ecto.Type} for Elixir") | ||
| 188 | (description | ||
| 189 | "This package provides a UUID v7 implementation and @code{Ecto.Type} | ||
| 190 | for Elixir.") | ||
| 191 | (home-page "https://hexdocs.pm/uuidv7/") | ||
| 192 | (license license:expat))) | ||
