2021-01-05 17:05:55 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage, ocaml, alcotest, ppxlib }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ppx_blob";
|
2021-01-05 17:05:55 +00:00
|
|
|
version = "0.7.2";
|
2020-11-19 00:13:47 +00:00
|
|
|
|
|
|
|
useDune2 = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/johnwhitington/${pname}/releases/download/${version}/ppx_blob-${version}.tbz";
|
2021-01-05 17:05:55 +00:00
|
|
|
sha256 = "00haz1cmplk3j9ysh6j656zrldy60585fmlndmfhpd5332mxrfdw";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [ alcotest ];
|
2021-01-05 17:05:55 +00:00
|
|
|
propagatedBuildInputs = [ ppxlib ];
|
2022-09-09 14:08:57 +00:00
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/johnwhitington/ppx_blob";
|
|
|
|
description = "OCaml ppx to include binary data from a file as a string";
|
|
|
|
license = licenses.unlicense;
|
|
|
|
};
|
|
|
|
}
|