ocamlPackages.ocamlify: disable for OCaml ≥ 5.0

This commit is contained in:
Vincent Laporte 2023-10-31 06:31:58 +01:00 committed by Vincent Laporte
parent 2157c909d2
commit e1ccd228a1

View File

@ -1,5 +1,8 @@
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
lib.throwIf (lib.versionAtLeast ocaml.version "5.0")
"ocamlify is not available for OCaml ${ocaml.version}"
stdenv.mkDerivation rec {
pname = "ocamlify";
version = "0.0.2";