nix expression for ocaml

svn path=/nixpkgs/trunk/; revision=1187
This commit is contained in:
Eelco Visser 2004-07-27 21:16:09 +00:00
parent 45ac835af6
commit 6bb1fefcdc

View File

@ -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";
}
}