summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorFlorent Becker <florent.becker@ens-lyon.org>2014-06-07 22:38:47 +0200
committerMichael Raskin <7c6f434c@mail.ru>2014-09-06 12:44:33 +0400
commit02a4e404745d40854baf322b84fffa501465f5f4 (patch)
treeef6759a7fb4ef6c76c5a0d5a286ad5db204da908 /pkgs/development/tools
parent3245b97000313f24fd626e2e61084179f358ac89 (diff)
downloadnixlib-02a4e404745d40854baf322b84fffa501465f5f4.tar
nixlib-02a4e404745d40854baf322b84fffa501465f5f4.tar.gz
nixlib-02a4e404745d40854baf322b84fffa501465f5f4.tar.bz2
nixlib-02a4e404745d40854baf322b84fffa501465f5f4.tar.lz
nixlib-02a4e404745d40854baf322b84fffa501465f5f4.tar.xz
nixlib-02a4e404745d40854baf322b84fffa501465f5f4.tar.zst
nixlib-02a4e404745d40854baf322b84fffa501465f5f4.zip
Reexport ocaml data notation in the ocaml-oasis derivation
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/ocaml/oasis/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix
index 3ab935705a2d..a5260b499c45 100644
--- a/pkgs/development/tools/ocaml/oasis/default.nix
+++ b/pkgs/development/tools/ocaml/oasis/default.nix
@@ -13,9 +13,11 @@ stdenv.mkDerivation {
 
   buildInputs =
     [
-      ocaml findlib ocaml_data_notation ocaml_typeconv ocamlmod ocamlify ounit
+      ocaml findlib ocaml_typeconv ocamlmod ocamlify ounit
     ];
 
+  propagatedBuildInputs = [ ocaml_data_notation ];
+
   configurePhase = "ocaml setup.ml -configure --prefix $out";
   buildPhase     = "ocaml setup.ml -build";
   installPhase   = "ocaml setup.ml -install";