summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/markup
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-12-09 09:33:32 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2017-12-10 13:01:40 +0100
commit746d9d1b7bc23e51a57eb43669d21a5e20b6c513 (patch)
tree1f1048ae7c39dd3139a955a6ab590349c5f417d9 /pkgs/development/ocaml-modules/markup
parent166536e152ad52825095a7b50df070b4f409b4fb (diff)
downloadnixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.tar
nixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.tar.gz
nixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.tar.bz2
nixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.tar.lz
nixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.tar.xz
nixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.tar.zst
nixlib-746d9d1b7bc23e51a57eb43669d21a5e20b6c513.zip
ocamlPackages.markup: 0.7.4 -> 0.7.5
Diffstat (limited to 'pkgs/development/ocaml-modules/markup')
-rw-r--r--pkgs/development/ocaml-modules/markup/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/markup/default.nix b/pkgs/development/ocaml-modules/markup/default.nix
index 3ee84d0d1b1c..eb3944db88e9 100644
--- a/pkgs/development/ocaml-modules/markup/default.nix
+++ b/pkgs/development/ocaml-modules/markup/default.nix
@@ -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;