9 stdenv.mkDerivation rec {
10 pname = "multimarkdown";
13 src = fetchFromGitHub {
15 repo = "MultiMarkdown-6";
17 hash = "sha256-emJbY0wucoc/GdjlILoeqjwuwuPpTjXTqZN0gUKOyLg=";
21 patchShebangs tools/enumsToPerl.pl
25 # Move files from $out/ to sub directories to prevent conflicts
26 # with other packages:
27 mkdir -p $out/share/doc/multimarkdown/
28 mv $out/LICENSE.txt $out/README.txt $out/share/doc/multimarkdown/
38 homepage = "https://fletcher.github.io/MultiMarkdown-6/introduction.html";
39 description = "A derivative of Markdown that adds new syntax features";
41 MultiMarkdown is a lightweight markup language created by
42 Fletcher T. Penney and based on Markdown, which supports
43 more export-formats (html, latex, beamer, memoir, odf, opml,
44 lyx, mmd) and implements some added features currently not
45 available with plain Markdown syntax.
47 It adds the following features to Markdown:
51 - citations and bibliography (works best in LaTeX using BibTeX)
53 - automatic cross-referencing ability
54 - smart typography, with support for multiple languages
56 - table and image captions
58 - glossary entries (LaTeX only)
59 - document metadata (e.g. title, author, date, etc.)
61 license = with licenses; [ mit ];
62 platforms = platforms.all;
63 maintainers = with maintainers; [ AndersonTorres ];