lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-ng.ocamlPackages_5_0.ocaml: init at 5.0.0-β1

authored by

Vincent Laporte and committed by
Vincent Laporte
7e591f94 eb569423

+12
+9
pkgs/development/compilers/ocaml/5.0.nix
··· 1 + import ./generic.nix { 2 + major_version = "5"; 3 + minor_version = "0"; 4 + patch_version = "0-beta1"; 5 + src = fetchTarball { 6 + url = "https://caml.inria.fr/pub/distrib/ocaml-5.0/ocaml-5.0.0~beta1.tar.xz"; 7 + sha256 = "sha256:1kwb53ra5qbwiiyrx5da7l5mqkjf0fr3rqgkrm3wr83l25scimj4"; 8 + }; 9 + }
+1
pkgs/development/compilers/ocaml/generic.nix
··· 73 73 configurePlatforms = lib.optionals (lib.versionAtLeast version "4.08" && !(stdenv.isDarwin && stdenv.isAarch64)) [ "host" "target" ]; 74 74 # x86_64-unknown-linux-musl-ld: -r and -pie may not be used together 75 75 hardeningDisable = lib.optional (lib.versionAtLeast version "4.09" && stdenv.hostPlatform.isMusl) "pie" 76 + ++ lib.optional (lib.versionAtLeast version "5.0" && stdenv.cc.isClang) "strictoverflow" 76 77 ++ lib.optionals (args ? hardeningDisable) args.hardeningDisable; 77 78 78 79 # Older versions have some race:
+2
pkgs/top-level/ocaml-packages.nix
··· 1663 1663 1664 1664 ocamlPackages_4_14 = mkOcamlPackages (callPackage ../development/compilers/ocaml/4.14.nix { }); 1665 1665 1666 + ocamlPackages_5_0 = mkOcamlPackages (callPackage ../development/compilers/ocaml/5.0.nix { }); 1667 + 1666 1668 ocamlPackages_latest = ocamlPackages_4_14; 1667 1669 1668 1670 ocamlPackages = ocamlPackages_4_14;