[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#45498] [PATCH v3 11/14] gnu: Add ocaml-mdx.
From: |
pukkamustard |
Subject: |
[bug#45498] [PATCH v3 11/14] gnu: Add ocaml-mdx. |
Date: |
Mon, 28 Dec 2020 22:10:13 +0100 |
* gnu/packages/ocaml.scm (ocaml-mdx): New variable.
---
gnu/packages/ocaml.scm | 49 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index baebe2540f..385d96977e 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -5870,6 +5870,55 @@ compiler, and enumerates the various official OCaml
releases and configuration
variants.")
(license license:isc)))
+(define-public ocaml-mdx
+ (package
+ (name "ocaml-mdx")
+ (version "1.7.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/realworldocaml/mdx")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "10avyv99xkfqdq3gmq8gps770jpibbfslg97sbhgmp0dpwikz49d"))))
+ (build-system dune-build-system)
+ (inputs
+ `(("ocaml-fmt" ,ocaml-fmt)
+ ("ocaml-astring" ,ocaml-astring)
+ ("ocaml-logs" ,ocaml-logs)
+ ("ocaml-cmdliner" ,ocaml-cmdliner)
+ ("ocaml-re" ,ocaml-re)
+ ("ocaml-result" ,ocaml-result)
+ ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
+ ("ocaml-odoc" ,ocaml-odoc)
+ ("ocaml-version" ,ocaml-version)))
+ (native-inputs
+ `(("ocaml-cppo" ,ocaml-cppo)
+ ("ocaml-lwt" ,ocaml-lwt)
+ ("ocaml-alcotest" ,ocaml-alcotest)))
+ (home-page
+ "https://github.com/realworldocaml/mdx")
+ (synopsis
+ "Executable code blocks inside markdown files")
+ (description
+ "@code{ocaml-mdx} allows to execute code blocks inside markdown files.
+There are (currently) two sub-commands, corresponding
+to two modes of operations: pre-processing (@code{ocaml-mdx pp})
+and tests (@code{ocaml-mdx test}]).
+
+The pre-processor mode allows to mix documentation and code,
+and to practice @dfn{literate programming} using markdown and OCaml.
+
+The test mode allows to ensure that shell scripts and OCaml fragments
+in the documentation always stays up-to-date.
+
+@code{ocaml-mdx} is released as two binaries called @code{ocaml-mdx} and
+@code{mdx} which are the same, mdx being the deprecated name, kept for now for
+compatibility.")
+ (license license:isc)))
+
(define-public lablgtk3
(package
(name "lablgtk")
--
2.29.2
- [bug#45498] [PATCH v3 10/14] gnu: Add ocaml-version., (continued)
- [bug#45498] [PATCH v3 10/14] gnu: Add ocaml-version., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 14/14] gnu: Add ocaml-merlin., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 02/14] gnu: Add ocaml-sexplib0., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 03/14] gnu: Add ocaml-base., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 05/14] gnu: Add ocaml-sexplib., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 12/14] gnu: ocaml-yojson: Make dependencies propagated-inputs., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 13/14] gnu: Add ocaml-dot-merlin-reader., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 06/14] gnu: Add ocaml-ounit2., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 08/14] gnu: ocaml-markup: Update to 1.0.0., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 09/14] gnu: Add ocaml-odoc., pukkamustard, 2020/12/28
- [bug#45498] [PATCH v3 11/14] gnu: Add ocaml-mdx.,
pukkamustard <=
- bug#45498: [PATCH 00/12] Add ocaml-merlin., Julien Lepiller, 2020/12/30