ocamlPackages.ppx_blob: disable for OCaml < 4.08

This commit is contained in:
Vincent Laporte 2024-09-27 07:56:56 +02:00 committed by Vincent Laporte
parent 7a7fe52b55
commit 69dfe24562

View File

@ -4,7 +4,7 @@ buildDunePackage rec {
pname = "ppx_blob";
version = "0.9.0";
duneVersion = "3";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/johnwhitington/${pname}/releases/download/${version}/ppx_blob-${version}.tbz";
@ -13,7 +13,7 @@ buildDunePackage rec {
checkInputs = [ alcotest ];
propagatedBuildInputs = [ ppxlib ];
doCheck = lib.versionAtLeast ocaml.version "4.08";
doCheck = true;
meta = with lib; {
homepage = "https://github.com/johnwhitington/ppx_blob";