2021-07-16 19:40:57 +00:00
|
|
|
{ lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "ppx_repr";
|
|
|
|
|
|
|
|
inherit (repr) src version useDune2;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
ppx_deriving
|
2021-06-28 23:13:55 +00:00
|
|
|
ppxlib
|
|
|
|
repr
|
2021-02-05 17:12:51 +00:00
|
|
|
];
|
|
|
|
|
2022-01-25 03:21:06 +00:00
|
|
|
doCheck = false; # tests fail with ppxlib >= 0.23.0
|
2021-02-05 17:12:51 +00:00
|
|
|
checkInputs = [
|
|
|
|
alcotest
|
|
|
|
hex
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = repr.meta // {
|
|
|
|
description = "PPX deriver for type representations";
|
|
|
|
};
|
|
|
|
}
|