From 91fe0ddc624a5b8e05623026e4972f495f50d29b Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Wed, 15 Oct 2014 11:13:58 +0200 Subject: [PATCH] Build js_of_ocaml with tyxml support --- pkgs/development/tools/ocaml/js_of_ocaml/default.nix | 4 ++-- 1 file 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 4443d2d5340..103b0bfa45e 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix +++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix @@ -1,5 +1,5 @@ {stdenv, fetchurl, ocaml, findlib, ocaml_lwt, menhir, ocsigen_deriving, camlp4, - cmdliner}: + cmdliner, tyxml, reactivedata}: stdenv.mkDerivation { name = "js_of_ocaml-2.5"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { }; buildInputs = [ocaml findlib ocaml_lwt menhir ocsigen_deriving - cmdliner camlp4]; + cmdliner tyxml camlp4 reactivedata]; patches = [ ./Makefile.conf.diff ];