ocamlPackages.markup: 0.7.4 -> 0.7.5

This commit is contained in:
Vincent Laporte 2017-12-09 09:33:32 +00:00 committed by Vincent Laporte
parent 166536e152
commit 746d9d1b7b
2 changed files with 6 additions and 6 deletions

View File

@ -2,19 +2,19 @@
stdenv.mkDerivation rec {
pname = "markup";
version = "0.7.4";
version = "0.7.5";
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchzip {
url = "http://github.com/aantron/markup.ml/archive/${version}.tar.gz";
sha256 = "1hchlqzsy9pax91gcdmxzakfm22fbvhxzwyzpvz8fqkx4372zs37";
sha256 = "09qm73m6c6wjh51w61vnfsnis37m28cf1r6hnkr3bbg903ahwbp5";
};
buildInputs = [ ocaml findlib ocamlbuild ];
buildInputs = [ ocaml findlib ocamlbuild lwt ];
installPhase = "make ocamlfind-install";
propagatedBuildInputs = [uutf lwt];
propagatedBuildInputs = [ uutf ];
createFindlibDestdir = true;

View File

@ -369,7 +369,7 @@ let
magick = callPackage ../development/ocaml-modules/magick { };
markup = callPackage ../development/ocaml-modules/markup { lwt = lwt2; };
markup = callPackage ../development/ocaml-modules/markup { lwt = ocaml_lwt; };
menhir = callPackage ../development/ocaml-modules/menhir { };