jbuilder: 1.0.1 -> dune: 1.1.1

This commit is contained in:
Vincent Laporte
2018-09-05 16:11:47 +00:00
committed by Vincent Laporte
parent eb429c7c54
commit fc19401d67
69 changed files with 228 additions and 230 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libev, ocaml, findlib, jbuilder
{ stdenv, fetchurl, libev, ocaml, findlib, dune
, zed, lwt_log, lwt_react
}:
@@ -13,13 +13,13 @@ stdenv.mkDerivation rec {
sha256 = "1hy5ryagqclgdm9lzh1qil5mrynlypv7mn6qm858hdcnmz9zzn0l";
};
buildInputs = [ libev ocaml findlib jbuilder ];
buildInputs = [ libev ocaml findlib dune ];
propagatedBuildInputs = [ zed lwt_log lwt_react ];
buildPhase = "jbuilder build -p lambda-term";
buildPhase = "dune build -p lambda-term";
inherit (jbuilder) installPhase;
inherit (dune) installPhase;
hasSharedObjects = true;