3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.gmetadom: disable for OCaml ≥ 4.14

gmetadom is not compatible with GCC 12 & OCaml 4.14
This commit is contained in:
Vincent Laporte 2023-03-05 17:09:09 +00:00 committed by Vincent Laporte
parent e541a6950d
commit 53e2791168

View file

@ -4,6 +4,9 @@ let
pname = "gmetadom"; pname = "gmetadom";
in in
lib.throwIf (lib.versionAtLeast ocaml.version "4.14")
"${pname} is not available for OCaml ${ocaml.version}"
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
version = "0.2.6"; version = "0.2.6";