2004-07-28 13:16:25 +02:00
|
|
|
{stdenv, fetchurl, x11}:
|
2004-07-27 23:16:09 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ocaml-3.08.0";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-02-15 15:44:19 +01:00
|
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/ocaml-3.08.0.tar.gz;
|
2004-07-27 23:16:09 +02:00
|
|
|
md5 = "c6ef478362295c150101cdd2efcd38e0";
|
2004-07-28 12:08:31 +02:00
|
|
|
};
|
2004-08-11 22:08:08 +02:00
|
|
|
configureScript = ./configure;
|
2004-07-28 12:08:31 +02:00
|
|
|
dontAddPrefix = "True";
|
2004-07-28 13:16:25 +02:00
|
|
|
configureFlags = ["-no-tk" "-x11lib" x11];
|
2004-07-28 12:08:31 +02:00
|
|
|
makeFlags = ["world" "bootstrap" "opt"];
|
|
|
|
checkTarget = ["opt.opt"];
|
2004-07-27 23:16:09 +02:00
|
|
|
}
|