ocamlPackages.ocamlnet: disable for OCaml ≥ 5.0

This commit is contained in:
Vincent Laporte 2022-12-29 06:18:35 +01:00 committed by Vincent Laporte
parent b4b8b7b0d7
commit 673cd10e59

View file

@ -2,9 +2,8 @@
, gnutls, nettle
}:
if lib.versionOlder ocaml.version "4.02"
then throw "ocamlnet is not available for OCaml ${ocaml.version}"
else
lib.throwIf (lib.versionOlder ocaml.version "4.02" || lib.versionAtLeast ocaml.version "5.0")
"ocamlnet is not available for OCaml ${ocaml.version}"
stdenv.mkDerivation rec {
pname = "ocaml${ocaml.version}-ocamlnet";