ocaml-ng.ocamlPackages_5_1.ocaml: init at 5.1.0-rc3

This commit is contained in:
Vincent Laporte 2023-09-08 11:49:53 +02:00
parent 75900df417
commit b787aa207f
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
3 changed files with 12 additions and 0 deletions

View file

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

View file

@ -35,6 +35,7 @@ let param =
"4.13" = v6_6;
"4.14" = v6_6;
"5.0" = v6_6;
"5.1" = v6_6;
}.${ocaml.meta.branch};
in

View file

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