summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2018-04-01 07:02:39 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2018-04-12 10:15:57 +0200
commit48ee88c7f8fcd8c976a994ea360587f1b0ba0f06 (patch)
tree62950dda3eac66de1b45b1f02ac35a5f2c2dc83f /pkgs/development/tools/ocaml/js_of_ocaml
parent9358f60f94c0f41c426d23b2fd85295e4dcf1290 (diff)
downloadnixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.tar
nixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.tar.gz
nixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.tar.bz2
nixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.tar.lz
nixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.tar.xz
nixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.tar.zst
nixpkgs-48ee88c7f8fcd8c976a994ea360587f1b0ba0f06.zip
ocamlPackages.js_of_ocaml-camlp4: add deriving support
Diffstat (limited to 'pkgs/development/tools/ocaml/js_of_ocaml')
-rw-r--r--pkgs/development/tools/ocaml/js_of_ocaml/camlp4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/camlp4.nix b/pkgs/development/tools/ocaml/js_of_ocaml/camlp4.nix
index b3a37e3f760..3caeabaae78 100644
--- a/pkgs/development/tools/ocaml/js_of_ocaml/camlp4.nix
+++ b/pkgs/development/tools/ocaml/js_of_ocaml/camlp4.nix
@@ -1,5 +1,5 @@
 { stdenv, ocaml, findlib, jbuilder, js_of_ocaml-compiler
-, camlp4
+, camlp4, ocsigen_deriving
 }:
 
 stdenv.mkDerivation rec {
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
 
 	inherit (js_of_ocaml-compiler) version src installPhase meta;
 
-	buildInputs = [ ocaml findlib jbuilder camlp4 ];
+	buildInputs = [ ocaml findlib jbuilder camlp4 ocsigen_deriving ];
 
 	buildPhase = "jbuilder build -p js_of_ocaml-camlp4";
 }