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, fetchurl, ocaml, findlib, opam}:
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam }:
let
pname = "uutf";
webpage = "http://erratique.ch/software/${pname}";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "0xvq20knmq25902ijpbk91ax92bkymsqkbfklj1537hpn64lydhz";
};
buildInputs = [ ocaml findlib opam ];
buildInputs = [ ocaml findlib ocamlbuild opam ];
createFindlibDestdir = true;