lol

hevea: make explicit the dependency to ocamlbuild

+3 -3
+3 -3
pkgs/tools/typesetting/hevea/default.nix
··· 1 - { stdenv, fetchurl, ocaml }: 1 + { stdenv, fetchurl, ocamlPackages }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "hevea-2.29"; ··· 8 8 sha256 = "1i7qkar6gjpsxqgdm90xxgp15z7gfyja0rn62n23a9aahc0hpgq6"; 9 9 }; 10 10 11 - buildInputs = [ ocaml ]; 11 + buildInputs = with ocamlPackages; [ ocaml ocamlbuild ]; 12 12 13 13 makeFlags = "PREFIX=$(out)"; 14 14 ··· 17 17 homepage = http://pauillac.inria.fr/~maranget/hevea/; 18 18 license = licenses.qpl; 19 19 maintainers = with maintainers; [ pSub ]; 20 - platforms = with platforms; linux; 20 + platforms = with platforms; unix; 21 21 }; 22 22 }