about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml
diff options
context:
space:
mode:
authorFlorent Becker <florent.becker@ens-lyon.org>2016-10-20 10:19:57 +0200
committerFlorent Becker <florent.becker@ens-lyon.org>2016-10-20 10:19:57 +0200
commite2bb0c5da85bf66648103395fe926a9c8f274840 (patch)
treeed2b3ddfeb194799919da7aaad5ec7338679ffb1 /pkgs/development/tools/ocaml
parent518e08e1dd7b9864b499efed159b1ba247dbf25a (diff)
downloadnixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.tar
nixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.tar.gz
nixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.tar.bz2
nixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.tar.lz
nixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.tar.xz
nixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.tar.zst
nixlib-e2bb0c5da85bf66648103395fe926a9c8f274840.zip
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
Diffstat (limited to 'pkgs/development/tools/ocaml')
-rw-r--r--pkgs/development/tools/ocaml/js_of_ocaml/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
index b19f078d9a27..33a7fe52c394 100644
--- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
@@ -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 ];