1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

js_of_ocaml: propagate dependency on ppx_deriving

ppx_deriving is needed by js_of_ocaml even when it is not used in the code to be compiled
by js_of_ocaml
This commit is contained in:
Florent Becker 2016-10-20 10:19:57 +02:00
parent 518e08e1dd
commit e2bb0c5da8

View file

@ -8,9 +8,9 @@ stdenv.mkDerivation {
sha256 = "1dali1akyd4zmkwav0d957ynxq2jj6cc94r4xiaql7ca89ajz4jj";
};
buildInputs = [ ocaml findlib menhir ocsigen_deriving ppx_deriving
buildInputs = [ ocaml findlib menhir ocsigen_deriving
cmdliner tyxml reactivedata cppo which base64];
propagatedBuildInputs = [ ocaml_lwt camlp4 ];
propagatedBuildInputs = [ ocaml_lwt camlp4 ppx_deriving ];
patches = [ ./Makefile.conf.diff ];