ocaml-oasis: adds missing dependency to caml4

This commit is contained in:
Vincent Laporte 2014-10-10 16:02:50 +01:00
parent 7bfe6144c6
commit 4f0bc8e060

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, ocaml, findlib, ocaml_data_notation, ocaml_typeconv, {stdenv, fetchurl, ocaml, findlib, ocaml_data_notation, ocaml_typeconv, camlp4,
ocamlmod, ocamlify, ounit, expect}: ocamlmod, ocamlify, ounit, expect}:
stdenv.mkDerivation { stdenv.mkDerivation {
@ -13,7 +13,7 @@ stdenv.mkDerivation {
buildInputs = buildInputs =
[ [
ocaml findlib ocaml_typeconv ocamlmod ocamlify ounit ocaml findlib ocaml_typeconv ocamlmod ocamlify ounit camlp4
]; ];
propagatedBuildInputs = [ ocaml_data_notation ]; propagatedBuildInputs = [ ocaml_data_notation ];
@ -22,13 +22,13 @@ stdenv.mkDerivation {
buildPhase = "ocaml setup.ml -build"; buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install"; installPhase = "ocaml setup.ml -install";
meta = { meta = with stdenv.lib; {
homepage = http://oasis.forge.ocamlcore.org/; homepage = http://oasis.forge.ocamlcore.org/;
description = "Configure, build and install system for OCaml projects"; description = "Configure, build and install system for OCaml projects";
license = stdenv.lib.licenses.lgpl21; license = licenses.lgpl21;
platforms = ocaml.meta.platforms; platforms = ocaml.meta.platforms;
maintainers = with stdenv.lib.maintainers; [ maintainers = with maintainers; [
z77z vbgl z77z
]; ];
}; };
} }