diff --git a/pkgs/development/compilers/ocaml/default.nix b/pkgs/development/compilers/ocaml/default.nix new file mode 100644 index 00000000000..12022cc6c3e --- /dev/null +++ b/pkgs/development/compilers/ocaml/default.nix @@ -0,0 +1,10 @@ +{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"; + } +}