diff options
| author | Giacomo Leidi <goodoldpaul@autistici.org> | 2025-09-15 23:47:19 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-09-30 08:43:38 +0200 |
| commit | ef9434698a0019116140ff344afef80a7e583fd3 (patch) | |
| tree | 2c2d9e75e3b591ec624c449d1769746d0f38236c | |
| parent | d86df775db1e4668452b31f88427283cc489832b (diff) | |
gnu: Add elixir-earmark-parser.
* gnu/packages/elixir-markup.scm (elixir-earmark-parser): New variable.
Change-Id: I7a0d255d2c5b6ff2738dad13e177777136f03f7c
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/elixir-markup.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/elixir-markup.scm b/gnu/packages/elixir-markup.scm index 4a78b9327eb..7f3c79110f0 100644 --- a/gnu/packages/elixir-markup.scm +++ b/gnu/packages/elixir-markup.scm @@ -45,6 +45,24 @@ Earmark and @code{EarmarkParser} tests.") (home-page "https://hexdocs.pm/earmark_ast_dsl/") (license license:asl2.0))) +(define-public elixir-earmark-parser + (package + (name "elixir-earmark-parser") + (version "1.4.44") + (source + (origin + (method url-fetch) + (uri (hexpm-uri "earmark_parser" version)) + (sha256 + (base32 "0l1758nwqf39yg2mgx3d9zfgz2f9i44h7xqmj9csa0a75dssqy27")))) + (build-system mix-build-system) + (native-inputs + (list elixir-earmark-ast-dsl elixir-excoveralls elixir-floki)) + (synopsis "AST parser and generator for Markdown") + (description "This package providesAST parser and generator for Markdown.") + (home-page "https://hexdocs.pm/earmark_parser/") + (license license:asl2.0))) + (define-public elixir-easyhtml (package (name "elixir-easyhtml") |
