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, fetchurl, ocaml, findlib, jbuilder, alcotest
{ stdenv, fetchurl, ocaml, findlib, dune, alcotest
, ocaml-migrate-parsetree
}:
@@ -13,14 +13,14 @@ stdenv.mkDerivation rec {
unpackCmd = "tar xjf $curSrc";
buildInputs = [ ocaml findlib jbuilder alcotest ocaml-migrate-parsetree ];
buildInputs = [ ocaml findlib dune alcotest ocaml-migrate-parsetree ];
buildPhase = "dune build -p ppx_blob";
doCheck = true;
checkPhase = "dune runtest -p ppx_blob";
inherit (jbuilder) installPhase;
inherit (dune) installPhase;
meta = with stdenv.lib; {
homepage = https://github.com/johnwhitington/ppx_blob;