diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-17 15:59:15 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:43 +0200 |
| commit | 2f3805e3d1e2ba0069ee1620a2d14c5f019b592d (patch) | |
| tree | b2304e01b111bd293c0034c94d73c09302c437ce /gnu/packages | |
| parent | 38d460615898969921b648b1bc566d790a8f7666 (diff) | |
gnu: Add elixir-x509.
* gnu/packages/elixir-web.scm (elixir-x509): New variable.
Change-Id: Ic48ecc55662cb28f8389b2f40d73bf90181bc0da
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/elixir-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/elixir-web.scm b/gnu/packages/elixir-web.scm index f3a3b7b57a5..d58fff2716b 100644 --- a/gnu/packages/elixir-web.scm +++ b/gnu/packages/elixir-web.scm | |||
| @@ -46,3 +46,22 @@ | |||
| 46 | "This package provides a specification for @code{WebSocket} connections.") | 46 | "This package provides a specification for @code{WebSocket} connections.") |
| 47 | (home-page "https://hexdocs.pm/websock/") | 47 | (home-page "https://hexdocs.pm/websock/") |
| 48 | (license license:expat))) | 48 | (license license:expat))) |
| 49 | |||
| 50 | (define-public elixir-x509 | ||
| 51 | (package | ||
| 52 | (name "elixir-x509") | ||
| 53 | (version "0.9.2") | ||
| 54 | (source | ||
| 55 | (origin | ||
| 56 | (method url-fetch) | ||
| 57 | (uri (hexpm-uri "x509" version)) | ||
| 58 | (sha256 | ||
| 59 | (base32 "1iyg91719bkxpps3l97aj2hd67xvf4xlrq2v1x5msmkyd5sxwpjc")))) | ||
| 60 | (build-system mix-build-system) | ||
| 61 | (synopsis | ||
| 62 | "Elixir package for working with X.509 certificates") | ||
| 63 | (description | ||
| 64 | "Elixir package for working with X.509 certificates, Certificate Signing Requests | ||
| 65 | (CSRs), Certificate Revocation Lists (CRLs) and RSA/ECC key pairs.") | ||
| 66 | (home-page "https://hexdocs.pm/x509/") | ||
| 67 | (license license:bsd-3))) | ||
