ocamlPackages.ppx_blob: disable tests for OCaml < 4.03

This commit is contained in:
Vincent Laporte 2020-04-09 18:58:24 +02:00
parent 7c15d4b15f
commit 8e0d02c073
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,4 +1,4 @@
{ lib, fetchurl, buildDunePackage, alcotest, ocaml-migrate-parsetree }:
{ lib, fetchurl, buildDunePackage, ocaml, alcotest, ocaml-migrate-parsetree }:
buildDunePackage rec {
pname = "ppx_blob";
@ -11,7 +11,7 @@ buildDunePackage rec {
checkInputs = lib.optional doCheck alcotest;
buildInputs = [ ocaml-migrate-parsetree ];
doCheck = true;
doCheck = lib.versionAtLeast ocaml.version "4.03";
meta = with lib; {
homepage = "https://github.com/johnwhitington/ppx_blob";