lol

ocamlPackages.core: mark version 0.15 as broken for OCaml ≥ 5.1

authored by

Vincent Laporte and committed by
Vincent Laporte
4bccad99 8ecf5abf

+4 -1
+2
pkgs/development/ocaml-modules/janestreet/0.15.nix
··· 3 , fetchpatch 4 , fzf 5 , lib 6 , openssl 7 , zstd 8 }: ··· 264 buildInputs = [ jst-config ]; 265 propagatedBuildInputs = [ base base_bigstring base_quickcheck ppx_jane time_now ]; 266 doCheck = false; # circular dependency with core_kernel 267 }; 268 269 core_bench = janePackage {
··· 3 , fetchpatch 4 , fzf 5 , lib 6 + , ocaml 7 , openssl 8 , zstd 9 }: ··· 265 buildInputs = [ jst-config ]; 266 propagatedBuildInputs = [ base base_bigstring base_quickcheck ppx_jane time_now ]; 267 doCheck = false; # circular dependency with core_kernel 268 + meta.broken = lib.versionAtLeast ocaml.version "5.1"; 269 }; 270 271 core_bench = janePackage {
+2 -1
pkgs/top-level/ocaml-packages.nix
··· 742 } 743 else if lib.versionOlder "4.10.2" ocaml.version 744 then import ../development/ocaml-modules/janestreet/0.15.nix { 745 - inherit self; 746 inherit (pkgs) bash fetchpatch fzf lib openssl zstd; 747 } 748 else if lib.versionOlder "4.08" ocaml.version ··· 794 795 janeStreet = import ../development/ocaml-modules/janestreet/0.15.nix { 796 self = self' // jsDeps; 797 inherit (pkgs) bash fetchpatch fzf lib openssl zstd; 798 }; 799
··· 742 } 743 else if lib.versionOlder "4.10.2" ocaml.version 744 then import ../development/ocaml-modules/janestreet/0.15.nix { 745 + inherit self ocaml; 746 inherit (pkgs) bash fetchpatch fzf lib openssl zstd; 747 } 748 else if lib.versionOlder "4.08" ocaml.version ··· 794 795 janeStreet = import ../development/ocaml-modules/janestreet/0.15.nix { 796 self = self' // jsDeps; 797 + inherit ocaml; 798 inherit (pkgs) bash fetchpatch fzf lib openssl zstd; 799 }; 800