cf76a30070
I've added the latest (3.10.0) version of ocaml and let the user choose default version. svn path=/nixpkgs/trunk/; revision=9671
8 lines
223 B
Nix
8 lines
223 B
Nix
args:
|
|
rec {
|
|
default = v_3_09_1;
|
|
v_3_08_0 = import ./3.08.0.nix (args // {stdenv = args.stdenv34;});
|
|
v_3_09_1 = import ./3.09.1.nix args;
|
|
v_3_10_0 = import ./3.10.0.nix (args // {stdenv = args.stdenvUsingSetupNew2;});
|
|
}
|