summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lambda-term
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-10-09 20:10:46 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-10-10 19:18:07 +0200
commitcc272dc9964303629059eabc9197794bc6e2ec9f (patch)
tree8795397ac2b83feb5cce917d91fd007136910408 /pkgs/development/ocaml-modules/lambda-term
parentf97d5ae81f086790f968257c7c68d07f26c0d34a (diff)
downloadnixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.tar
nixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.gz
nixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.bz2
nixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.lz
nixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.xz
nixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.zst
nixlib-cc272dc9964303629059eabc9197794bc6e2ec9f.zip
OCaml modules: make explicit some dependencies to ocamlbuild
Diffstat (limited to 'pkgs/development/ocaml-modules/lambda-term')
-rw-r--r--pkgs/development/ocaml-modules/lambda-term/1.6.nix4
-rw-r--r--pkgs/development/ocaml-modules/lambda-term/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/lambda-term/1.6.nix b/pkgs/development/ocaml-modules/lambda-term/1.6.nix
index 026f67d8ef44..4638748160a2 100644
--- a/pkgs/development/ocaml-modules/lambda-term/1.6.nix
+++ b/pkgs/development/ocaml-modules/lambda-term/1.6.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }:
+{ stdenv, fetchurl, libev, ocaml, findlib, ocamlbuild, ocaml_lwt, ocaml_react, zed, camlp4 }:
 
 stdenv.mkDerivation rec {
   version = "1.6";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "1rhfixdgpylxznf6sa9wr31wb4pjzpfn5mxhxqpbchmpl2afwa09";
   };
 
-  buildInputs = [ libev ocaml findlib ocaml_lwt ocaml_react ];
+  buildInputs = [ libev ocaml findlib ocamlbuild ocaml_lwt ocaml_react ];
 
   propagatedBuildInputs = [ camlp4 zed ];
 
diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix
index 60afad57b57b..f66773d426af 100644
--- a/pkgs/development/ocaml-modules/lambda-term/default.nix
+++ b/pkgs/development/ocaml-modules/lambda-term/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed }:
+{ stdenv, fetchurl, libev, ocaml, findlib, ocamlbuild, ocaml_lwt, ocaml_react, zed }:
 
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
 
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "1kwpsqds51xmy3z3ddkam92hkl7arlzy9awhzsq62ysxcl91fb8m";
   };
 
-  buildInputs = [ libev ocaml findlib ocaml_react ];
+  buildInputs = [ libev ocaml findlib ocamlbuild ocaml_react ];
 
   propagatedBuildInputs = [ zed ocaml_lwt ];