summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/utop
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/tools/ocaml/utop
parentf97d5ae81f086790f968257c7c68d07f26c0d34a (diff)
downloadnixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.tar
nixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.gz
nixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.bz2
nixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.lz
nixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.xz
nixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.tar.zst
nixpkgs-cc272dc9964303629059eabc9197794bc6e2ec9f.zip
OCaml modules: make explicit some dependencies to ocamlbuild
Diffstat (limited to 'pkgs/development/tools/ocaml/utop')
-rw-r--r--pkgs/development/tools/ocaml/utop/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix
index 45888924a2e..b8740bc3793 100644
--- a/pkgs/development/tools/ocaml/utop/default.nix
+++ b/pkgs/development/tools/ocaml/utop/default.nix
@@ -1,5 +1,5 @@
-{stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper,
- ocaml_react, camomile, zed, cppo, camlp4, ppx_tools
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, camlp4, ocaml_react
+, lambdaTerm, ocaml_lwt, makeWrapper, camomile, zed, cppo, ppx_tools
 }:
 
 stdenv.mkDerivation rec {
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "0hxybkqmrh0sz1yyyrgzdmxp46gda4vk22pv07s0qpfg2dpv56jh";
   };
 
-  buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ppx_tools ];
+  buildInputs = [ ocaml findlib ocamlbuild makeWrapper cppo camlp4 ppx_tools ];
 
   propagatedBuildInputs = [ lambdaTerm ocaml_lwt ];