google-drive-ocamlfuse: add missing ocamlbuild dependency

+2 -2
+2 -2
pkgs/applications/networking/google-drive-ocamlfuse/default.nix
··· 1 1 { stdenv, fetchurl, zlib 2 - , ocaml, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 2 + , ocaml, ocamlbuild, ocamlfuse, findlib, gapi_ocaml, ocaml_sqlite3, camlidl }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "google-drive-ocamlfuse-${version}"; ··· 10 10 sha256 = "1ldja7080pnjaibrbdvfqwakp4mac8yw1lkb95f7lgldmy96lxas"; 11 11 }; 12 12 13 - buildInputs = [ zlib ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]; 13 + buildInputs = [ zlib ocaml ocamlbuild ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]; 14 14 15 15 configurePhase = "ocaml setup.ml -configure --prefix \"$out\""; 16 16 buildPhase = "ocaml setup.ml -build";