jbuilder: 1.0.1 -> dune: 1.1.1

This commit is contained in:
Vincent Laporte
2018-09-15 19:32:32 +00:00
committed by Vincent Laporte
parent eb429c7c54
commit fc19401d67
69 changed files with 228 additions and 230 deletions
@@ -1,4 +1,4 @@
{ stdenv, ocaml, findlib, jbuilder, lwt }:
{ stdenv, ocaml, findlib, dune, lwt }:
stdenv.mkDerivation rec {
version = "1.0.0";
@@ -6,13 +6,13 @@ stdenv.mkDerivation rec {
inherit (lwt) src;
buildInputs = [ ocaml findlib jbuilder ];
buildInputs = [ ocaml findlib dune ];
propagatedBuildInputs = [ lwt ];
buildPhase = "jbuilder build -p lwt_log";
buildPhase = "dune build -p lwt_log";
inherit (jbuilder) installPhase;
inherit (dune) installPhase;
meta = {
description = "Lwt logging library (deprecated)";