ocaml: init at 4.06.0

This commit is contained in:
Vincent Laporte 2017-11-03 22:48:50 +00:00
parent 3328e35af8
commit 4f7c0aed38
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 12 additions and 1 deletions

View file

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

View file

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