lol

ocamlPackages.ppx_cstruct: disable tests for OCaml ≥ 5.1

+2 -2
+2 -2
pkgs/development/ocaml-modules/cstruct/ppx.nix
··· 1 - { lib, buildDunePackage, cstruct, sexplib, ppxlib 1 + { lib, buildDunePackage, ocaml, cstruct, sexplib, ppxlib 2 2 , ocaml-migrate-parsetree-2 3 3 , ounit, cppo, ppx_sexp_conv, cstruct-unix, cstruct-sexp 4 4 }: ··· 15 15 16 16 propagatedBuildInputs = [ cstruct ppxlib sexplib ]; 17 17 18 - doCheck = true; 18 + doCheck = !lib.versionAtLeast ocaml.version "5.1"; 19 19 nativeCheckInputs = [ cppo ]; 20 20 checkInputs = [ ounit ppx_sexp_conv cstruct-sexp cstruct-unix ocaml-migrate-parsetree-2 ]; 21 21 }