3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.piaf: disable for OCaml ≥ 5.0

This commit is contained in:
Vincent Laporte 2022-12-27 05:11:38 +01:00 committed by Vincent Laporte
parent b38111a665
commit ea993dd1fc

View file

@ -1,5 +1,6 @@
{ alcotest-lwt
, buildDunePackage
, ocaml
, dune-site
, fetchzip
, gluten-lwt-unix
@ -14,6 +15,9 @@
, uri
}:
lib.throwIf (lib.versionAtLeast ocaml.version "5.0")
"piaf is not available for OCaml ${ocaml.version}"
buildDunePackage rec {
pname = "piaf";
version = "0.1.0";