From 040509d7a091d85bc647a7b71e4c7a28d5e86877 Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Mon, 15 Sep 2025 23:44:01 +0200 Subject: [PATCH] gnu: Add elixir-makeup-html. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/elixir-markup.scm (elixir-makeup-html): New variable. Change-Id: If2c88cd1f19354d13738e86d7da93cd3aa18b107 Signed-off-by: Ludovic Courtès --- gnu/packages/elixir-markup.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/elixir-markup.scm b/gnu/packages/elixir-markup.scm index 138a83a6d022420de4a2ec0c9b9d43aa84030eb5..a35b26534c60df12b6051bf19d0355f8740050fb 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)))