hevea: make explicit the dependency to ocamlbuild

This commit is contained in:
Vincent Laporte 2017-10-11 07:29:09 +00:00
parent 1529938fc3
commit f0b7ee37ef
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml }:
{ stdenv, fetchurl, ocamlPackages }:
stdenv.mkDerivation rec {
name = "hevea-2.29";
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "1i7qkar6gjpsxqgdm90xxgp15z7gfyja0rn62n23a9aahc0hpgq6";
};
buildInputs = [ ocaml ];
buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
makeFlags = "PREFIX=$(out)";
@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
homepage = http://pauillac.inria.fr/~maranget/hevea/;
license = licenses.qpl;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; linux;
platforms = with platforms; unix;
};
}