summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-05-12 19:36:58 +0100
committerGitHub <noreply@github.com>2020-05-12 19:36:58 +0100
commitd6e330cf7c9bd185f38549c3f820065be0537c43 (patch)
treeb8f5b580b48832220506b8b382a3c8745f62e9db /pkgs
parentce09af529119abe47cce610de24fa1d1244beaa9 (diff)
parent4578b419992659669fb8698118f62aea986b7f56 (diff)
downloadnixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.tar
nixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.tar.gz
nixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.tar.bz2
nixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.tar.lz
nixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.tar.xz
nixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.tar.zst
nixpkgs-d6e330cf7c9bd185f38549c3f820065be0537c43.zip
Merge pull request #87474 from vbgl/ocaml-mdx-1.6.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/mdx/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/mdx/default.nix b/pkgs/development/ocaml-modules/mdx/default.nix
index 261374115ff..1331c10d426 100644
--- a/pkgs/development/ocaml-modules/mdx/default.nix
+++ b/pkgs/development/ocaml-modules/mdx/default.nix
@@ -1,19 +1,20 @@
 { lib, fetchurl, buildDunePackage, opaline, ocaml
+, alcotest
 , astring, cmdliner, cppo, fmt, logs, ocaml-migrate-parsetree, ocaml-version, ocaml_lwt, pandoc, re }:
 
 buildDunePackage rec {
   pname = "mdx";
-  version = "1.5.0";
+  version = "1.6.0";
 
   src = fetchurl {
-    url = "https://github.com/realworldocaml/mdx/releases/download/1.5.0/mdx-1.5.0.tbz";
-    sha256 = "0g45plf4z7d178gp0bx7842fwbd3m19679yfph3s95da6mrfm3xn";
+    url = "https://github.com/realworldocaml/mdx/releases/download/${version}/mdx-${version}.tbz";
+    sha256 = "18m4ay226dwbgnwp3ia6bfcm033dvp9yby0lbddqn8ak374m2k3b";
   };
 
   nativeBuildInputs = [ cppo ];
   buildInputs = [ cmdliner ];
   propagatedBuildInputs = [ astring fmt logs ocaml-migrate-parsetree ocaml-version re ];
-  checkInputs = lib.optionals doCheck [ ocaml_lwt pandoc ];
+  checkInputs = [ alcotest ocaml_lwt pandoc ];
 
   doCheck = true;