Skip to content

Commit

Permalink
ocamlPackages.mdx: 1.6.0 → 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Aug 2, 2020
1 parent 1f0baf9 commit 9dab2f2
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pkgs/development/ocaml-modules/mdx/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
{ lib, fetchurl, buildDunePackage, opaline, ocaml
, alcotest
, astring, cmdliner, cppo, fmt, logs, ocaml-migrate-parsetree, ocaml-version, ocaml_lwt, pandoc, re }:
, astring, cmdliner, cppo, fmt, logs, ocaml-migrate-parsetree, ocaml-version, odoc, ocaml_lwt, pandoc, re }:

buildDunePackage rec {
pname = "mdx";
version = "1.6.0";
version = "1.7.0";
useDune2 = true;

src = fetchurl {
url = "https://github.com/realworldocaml/mdx/releases/download/${version}/mdx-${version}.tbz";
sha256 = "18m4ay226dwbgnwp3ia6bfcm033dvp9yby0lbddqn8ak374m2k3b";
sha256 = "0vpc30sngl3vpychrfvjwyi93mk311x3f2azlkxasgcj69fq03i7";
};

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

doCheck = true;

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

outputs = [ "bin" "lib" "out" ];

installPhase = ''
Expand Down

0 comments on commit 9dab2f2

Please sign in to comment.