summaryrefslogtreecommitdiff
path: root/gnu/packages/elixir-markup.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/elixir-markup.scm')
-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.")
126implementing an Erlang lexer for the Makeup syntax highlighter.") 126implementing an Erlang lexer for the Makeup syntax highlighter.")
127 (home-page "https://hexdocs.pm/makeup_erlang/") 127 (home-page "https://hexdocs.pm/makeup_erlang/")
128 (license license:bsd-2))) 128 (license license:bsd-2)))
129
130(define-public elixir-makeup-html
131 (package
132 (name "elixir-makeup-html")
133 (version "0.2.0")
134 (source
135 (origin
136 (method url-fetch)
137 (uri (hexpm-uri "makeup_html" version))
138 (sha256
139 (base32 "1ciildxh4bmacbkbil4hhsjhp7z31ycnvq072fml59m6p6zgfmh8"))))
140 (build-system mix-build-system)
141 (native-inputs
142 (list elixir-stream-data))
143 (propagated-inputs (list elixir-makeup))
144 (synopsis "HTML lexer for the Makeup syntax highlighter")
145 (description "This package provides @code{elixir-makeup-html}, a library
146implementing an HTML lexer for the Makeup syntax highlighter.")
147 (home-page "https://hexdocs.pm/makeup_html/")
148 (license license:expat)))