about summary refs log tree commit diff
path: root/pkgs/applications/networking/google-drive-ocamlfuse
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-04-01 10:52:19 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-04-01 12:30:14 +0200
commit86f4ded7898eee8ba3dd808d65095f5afacc1d29 (patch)
tree629d7650a69876d6164f1b288588f0cf1a5da665 /pkgs/applications/networking/google-drive-ocamlfuse
parent46ea770b2b1e105cab806cdd3845b2ec02ea66e0 (diff)
google-drive-ocamlfuse: add missing ocamlbuild dependency
Diffstat (limited to 'pkgs/applications/networking/google-drive-ocamlfuse')
-rw-r--r--pkgs/applications/networking/google-drive-ocamlfuse/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
index 64519ce17d5b9..674cf60161db9 100644
--- a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
+++ b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, zlib
-, ocaml, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }:
+, ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }:
 
 stdenv.mkDerivation rec {
   name    = "google-drive-ocamlfuse-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     sha256 = "1ldja7080pnjaibrbdvfqwakp4mac8yw1lkb95f7lgldmy96lxas";
   };
 
-  buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl];
+  buildInputs = [ zlib ocaml ocamlbuild ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl];
 
   configurePhase = "ocaml setup.ml -configure --prefix \"$out\"";
   buildPhase = "ocaml setup.ml -build";