ocamlPackages.ppx_blob: disable tests for OCaml < 4.03
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user