summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorGiacomo Leidi <goodoldpaul@autistici.org>2025-09-15 23:44:01 +0200
committerLudovic Courtès <ludo@gnu.org>2025-09-30 08:43:37 +0200
commit040509d7a091d85bc647a7b71e4c7a28d5e86877 (patch)
treec224595d2ba1d615e71b00fa6204d019c3eb1f16 /gnu/packages
parent5c82d0dae260b51ab2296859be6601afeb7afced (diff)
gnu: Add elixir-makeup-html.
* gnu/packages/elixir-markup.scm (elixir-makeup-html): New variable. Change-Id: If2c88cd1f19354d13738e86d7da93cd3aa18b107 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/elixir-markup.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/elixir-markup.scm b/gnu/packages/elixir-markup.scm
index 138a83a6d02..a35b26534c6 100644
--- a/gnu/packages/elixir-markup.scm
+++ b/gnu/packages/elixir-markup.scm
@@ -126,3 +126,23 @@ implementing a C lexer for the Makeup syntax highlighter.")
implementing an Erlang lexer for the Makeup syntax highlighter.")
(home-page "https://hexdocs.pm/makeup_erlang/")
(license license:bsd-2)))
+
+(define-public elixir-makeup-html
+ (package
+ (name "elixir-makeup-html")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hexpm-uri "makeup_html" version))
+ (sha256
+ (base32 "1ciildxh4bmacbkbil4hhsjhp7z31ycnvq072fml59m6p6zgfmh8"))))
+ (build-system mix-build-system)
+ (native-inputs
+ (list elixir-stream-data))
+ (propagated-inputs (list elixir-makeup))
+ (synopsis "HTML lexer for the Makeup syntax highlighter")
+ (description "This package provides @code{elixir-makeup-html}, a library
+implementing an HTML lexer for the Makeup syntax highlighter.")
+ (home-page "https://hexdocs.pm/makeup_html/")
+ (license license:expat)))