lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.markup: 0.7.4 -> 0.7.5

authored by

Vincent Laporte and committed by
Vincent Laporte
746d9d1b 166536e1

+6 -6
+5 -5
pkgs/development/ocaml-modules/markup/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "markup"; 5 - version = "0.7.4"; 5 + version = "0.7.5"; 6 6 name = "ocaml${ocaml.version}-${pname}-${version}"; 7 7 8 8 src = fetchzip { 9 9 url = "http://github.com/aantron/markup.ml/archive/${version}.tar.gz"; 10 - sha256 = "1hchlqzsy9pax91gcdmxzakfm22fbvhxzwyzpvz8fqkx4372zs37"; 10 + sha256 = "09qm73m6c6wjh51w61vnfsnis37m28cf1r6hnkr3bbg903ahwbp5"; 11 11 }; 12 12 13 - buildInputs = [ ocaml findlib ocamlbuild ]; 13 + buildInputs = [ ocaml findlib ocamlbuild lwt ]; 14 14 15 15 installPhase = "make ocamlfind-install"; 16 - 17 - propagatedBuildInputs = [uutf lwt]; 16 + 17 + propagatedBuildInputs = [ uutf ]; 18 18 19 19 createFindlibDestdir = true; 20 20
+1 -1
pkgs/top-level/ocaml-packages.nix
··· 369 369 370 370 magick = callPackage ../development/ocaml-modules/magick { }; 371 371 372 - markup = callPackage ../development/ocaml-modules/markup { lwt = lwt2; }; 372 + markup = callPackage ../development/ocaml-modules/markup { lwt = ocaml_lwt; }; 373 373 374 374 menhir = callPackage ../development/ocaml-modules/menhir { }; 375 375