2004-07-27 22:16:09 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocaml-3.08.0";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://caml.inria.fr/distrib/ocaml-3.08/ocaml-3.08.0.tar.gz;
|
|
|
|
md5 = "c6ef478362295c150101cdd2efcd38e0";
|
2004-07-28 11:08:31 +01:00
|
|
|
};
|
|
|
|
configureScript = ./configure;
|
|
|
|
dontAddPrefix = "True";
|
|
|
|
configureFlags = "-no-tk";
|
|
|
|
makeFlags = ["world" "bootstrap" "opt"];
|
|
|
|
checkTarget = ["opt.opt"];
|
2004-07-27 22:16:09 +01:00
|
|
|
}
|