ocamlPackages.ppx_deriving_yojson: disable tests

This commit is contained in:
Vincent Laporte 2018-12-05 09:31:29 +00:00 committed by Vincent Laporte
parent d9eadb4aa7
commit 47c4876de6

View file

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, topkg, cppo
, ppx_import, ppx_deriving, yojson, ounit
, ppx_deriving, yojson, ounit
}:
stdenv.mkDerivation rec {
@ -13,15 +13,12 @@ stdenv.mkDerivation rec {
sha256 = "1pwfnq7z60nchba4gnf58918ll11w3gj5i88qhz1p2jm45hxqgnw";
};
buildInputs = [ ocaml findlib ocamlbuild cppo ounit ppx_import ];
buildInputs = [ ocaml findlib ocamlbuild cppo ounit ];
propagatedBuildInputs = [ ppx_deriving yojson ];
inherit (topkg) installPhase;
doCheck = true;
checkTarget = "test";
meta = {
description = "A Yojson codec generator for OCaml >= 4.02.";
inherit (src.meta) homepage;