mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
ocamlPackages.ppx_blob: disable tests for OCaml < 4.03
This commit is contained in:
parent
7c15d4b15f
commit
8e0d02c073
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue