ocaml-ng.ocamlPackages_4_13.ocaml: init at 4.13.0-α1

This commit is contained in:
Vincent Laporte 2021-06-04 21:57:46 +02:00 committed by Vincent Laporte
parent c63d4270fe
commit 0887d7a747
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import ./generic.nix {
major_version = "4";
minor_version = "13";
patch_version = "0-alpha1";
src = fetchTarball {
url = "https://caml.inria.fr/pub/distrib/ocaml-4.13/ocaml-4.13.0~alpha1.tar.xz";
sha256 = "071k12q8m2w9bcwvfclyc46pwd9r49v6av36fhjdlqq29niyq915";
};
}

View File

@ -1511,6 +1511,8 @@ in let inherit (pkgs) callPackage; in rec
ocamlPackages_4_12 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.12.nix { });
ocamlPackages_4_13 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.13.nix { });
ocamlPackages_latest = ocamlPackages_4_12;
ocamlPackages = ocamlPackages_4_12;