ocamlPackages.nocrypto: add explicit dependency to ppx_deriving

This commit is contained in:
Vincent Laporte 2019-09-03 19:35:40 +00:00 committed by Vincent Laporte
parent d9b290000e
commit 764724a631

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, fetchpatch, ocaml, findlib, ocamlbuild, topkg
, cpuid, ocb-stubblr, sexplib
, cstruct, zarith, ppx_sexp_conv
, cstruct, zarith, ppx_sexp_conv, ppx_deriving
, cstruct-lwt ? null
}:
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
];
buildInputs = [ ocaml findlib ocamlbuild topkg cpuid ocb-stubblr ];
propagatedBuildInputs = [ cstruct ppx_sexp_conv sexplib zarith ] ++ optional withLwt cstruct-lwt;
propagatedBuildInputs = [ cstruct ppx_deriving ppx_sexp_conv sexplib zarith ] ++ optional withLwt cstruct-lwt;
buildPhase = "${topkg.buildPhase} --with-lwt ${boolToString withLwt}";
inherit (topkg) installPhase;