summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-10-15 16:32:17 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-10-15 17:59:29 +0200
commit5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847 (patch)
tree06e778cc0d672709a140925a33fbb58a2d86fd31
parent5fc012ecabe8273d188675164066f3539eaa99db (diff)
downloadnixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.tar
nixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.tar.gz
nixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.tar.bz2
nixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.tar.lz
nixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.tar.xz
nixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.tar.zst
nixlib-5a5d051ed0e8fc9247c8d9e0530c46cbf10c1847.zip
ocamlPackages.js_of_ocaml: link to ppx_deriving
-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 3f5bd770dcf0..b19f078d9a27 100644
--- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib, ocaml_lwt, menhir, ocsigen_deriving, camlp4,
+{ stdenv, fetchurl, ocaml, findlib, ocaml_lwt, menhir, ocsigen_deriving, ppx_deriving, camlp4,
  cmdliner, tyxml, reactivedata, cppo, which, base64}:
 
 stdenv.mkDerivation {
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
     sha256 = "1dali1akyd4zmkwav0d957ynxq2jj6cc94r4xiaql7ca89ajz4jj";
     };
 
-  buildInputs = [ocaml findlib menhir ocsigen_deriving
+  buildInputs = [ ocaml findlib menhir ocsigen_deriving ppx_deriving
                  cmdliner tyxml reactivedata cppo which base64];
   propagatedBuildInputs = [ ocaml_lwt camlp4 ];