ocaml: init at 4.05.0

This commit is contained in:
Vincent Laporte 2017-07-13 17:57:55 +00:00
parent 68ee2c6c30
commit bd7bf33814
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,9 @@
import ./generic.nix {
major_version = "4";
minor_version = "05";
patch_version = "0";
sha256 = "1y9fw1ci9pwnbbrr9nwr8cq8vypcxwdf4akvxard3mxl2jx2g984";
# If the executable is stipped it does not work
dontStrip = true;
}

View file

@ -941,7 +941,9 @@ in rec
ocamlPackages_4_04 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.04.nix { }) (self: super: { });
ocamlPackages_latest = ocamlPackages_4_04;
ocamlPackages_4_05 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.05.nix { }) (self: super: { });
ocamlPackages_latest = ocamlPackages_4_05;
ocamlPackages = ocamlPackages_4_02;
}