summary refs log tree commit diff
path: root/pkgs/development/compilers/ocaml
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-09-08 11:49:53 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-09-08 11:50:46 +0200
commitb787aa207f8ca5d21021e704a4d177ea362f7723 (patch)
tree54d74a467ac9c8115830b7c1f90a8056906a11ce /pkgs/development/compilers/ocaml
parent75900df417fc3d5e1b6bc64dd31e4c65e069dda1 (diff)
downloadnixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.tar
nixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.tar.gz
nixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.tar.bz2
nixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.tar.lz
nixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.tar.xz
nixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.tar.zst
nixpkgs-b787aa207f8ca5d21021e704a4d177ea362f7723.zip
ocaml-ng.ocamlPackages_5_1.ocaml: init at 5.1.0-rc3
Diffstat (limited to 'pkgs/development/compilers/ocaml')
-rw-r--r--pkgs/development/compilers/ocaml/5.1.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ocaml/5.1.nix b/pkgs/development/compilers/ocaml/5.1.nix
new file mode 100644
index 00000000000..e11887809d4
--- /dev/null
+++ b/pkgs/development/compilers/ocaml/5.1.nix
@@ -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";
+  };
+}