ocamlPackages_5_2.ocaml: init at 5.2.0-β1

This commit is contained in:
Vincent Laporte 2024-03-25 18:06:39 +01:00
parent 3e3b1e2c18
commit 81feea0818
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import ./generic.nix {
major_version = "5";
minor_version = "2";
patch_version = "0-beta1";
src = fetchTarball {
url = "https://caml.inria.fr/pub/distrib/ocaml-5.2/ocaml-5.2.0~beta1.tar.xz";
sha256 = "sha256:0prf87a41k2y1znnh2pjkggrvhh5cihj68sxqrjn162889rf7wam";
};
}

View File

@ -2001,6 +2001,8 @@ in let inherit (pkgs) callPackage; in rec
ocamlPackages_5_1 = mkOcamlPackages (callPackage ../development/compilers/ocaml/5.1.nix { });
ocamlPackages_5_2 = mkOcamlPackages (callPackage ../development/compilers/ocaml/5.2.nix { });
ocamlPackages_latest = ocamlPackages_5_1;
ocamlPackages = ocamlPackages_5_1;