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