ocamlPackages.ppx_blob: 0.4.0 → 0.7.1

This commit is contained in:
Vincent Laporte 2020-11-14 09:42:16 +01:00 committed by Vincent Laporte
parent 597e7748d1
commit 47b02b30e3

View file

@ -2,16 +2,18 @@
buildDunePackage rec {
pname = "ppx_blob";
version = "0.4.0";
version = "0.7.1";
useDune2 = true;
src = fetchurl {
url = "https://github.com/johnwhitington/${pname}/releases/download/${version}/ppx_blob-${version}.tbz";
sha256 = "1xmslk1mwdzhy1bydgsjlcb7h544c39hvxa8lywp8w72gaggjl16";
sha256 = "0m616ri6kmawflphiwm6j4djds27v0fjvi8xjz1fq5ydc1sq8d0l";
};
checkInputs = lib.optional doCheck alcotest;
checkInputs = [ alcotest ];
buildInputs = [ ocaml-migrate-parsetree ];
doCheck = lib.versionAtLeast ocaml.version "4.03";
doCheck = lib.versionAtLeast ocaml.version "4.05";
meta = with lib; {
homepage = "https://github.com/johnwhitington/ppx_blob";