summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mdx/default.nix
blob: 0b43cf461e01ae066a9a56c79d19138fba1e226b (plain) (blame)
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
{ lib, fetchFromGitHub, buildDunePackage, ocaml, astring, cmdliner, cppo, fmt, logs, ocaml-migrate-parsetree, ocaml_lwt, pandoc, re }:

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

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

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

  doCheck = !lib.versionAtLeast ocaml.version "4.08";

  dontStrip = lib.versions.majorMinor ocaml.version == "4.04";

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