aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/mdx/default.nix
blob: 29fee1b63184261c994a8efe2734d7aade687f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, buildDunePackage, astring, cmdliner, cppo, fmt, logs, ocaml-migrate-parsetree, ocaml_lwt, pandoc, re }:

buildDunePackage rec {
  pname = "mdx";
  version = "1.4.0";

  minimumOCamlVersion = "4.05";

  src = fetchFromGitHub {
    owner = "realworldocaml";
    repo = pname;
    rev = version;
    sha256 = "0ljd00d261s2wf7cab086asqi39icf9zs4nylni6dldaqb027d4w";
  };

  nativeBuildInputs = [ cppo ];
  buildInputs = [ astring cmdliner fmt logs ocaml-migrate-parsetree re ];
  checkInputs = [ ocaml_lwt pandoc ];

  doCheck = true;

  meta = {
    homepage = https://github.com/realworldocaml/mdx;
    description = "Executable OCaml code blocks inside markdown files";
    license = stdenv.lib.licenses.isc;
    maintainers = [ stdenv.lib.maintainers.romildo ];
  };
}