ocamlPackages.stdcompat: disable for OCaml ≥ 5.2

This commit is contained in:
Vincent Laporte 2024-05-15 07:15:36 +02:00 committed by Vincent Laporte
parent 619d94523e
commit 1b9c3e0fd6

View File

@ -1,8 +1,12 @@
{ buildDunePackage
, ocaml
, lib
, fetchurl
}:
lib.throwIf (lib.versionAtLeast ocaml.version "5.2")
"stdcompat is not available for OCaml ${ocaml.version}"
buildDunePackage rec {
pname = "stdcompat";
version = "19";