OCaml modules: make explicit some dependencies to ocamlbuild

This commit is contained in:
Vincent Laporte
2016-10-08 08:44:25 +02:00
parent 731b616fdb
commit 4168706d4f
61 changed files with 125 additions and 123 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, qtest, ounit }:
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, qtest, ounit }:
let version = "0.6"; in
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
sha256 = "0mky5qas3br2x4y14dzcky212z624ydqnx8mw8w00x0c1xjpafkb";
};
buildInputs = [ ocaml findlib qtest ounit ];
buildInputs = [ ocaml findlib ocamlbuild qtest ounit ];
configureFlags = [
"--enable-tests"