2021-07-15 09:52:14 +02:00
|
|
|
{ lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
|
2021-01-12 19:49:44 +01:00
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "ppx_repr";
|
|
|
|
|
|
|
|
inherit (repr) src version useDune2;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
ppx_deriving
|
2021-06-06 13:04:43 +02:00
|
|
|
ppxlib
|
|
|
|
repr
|
2021-01-12 19:49:44 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [
|
|
|
|
alcotest
|
|
|
|
hex
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = repr.meta // {
|
|
|
|
description = "PPX deriver for type representations";
|
|
|
|
};
|
|
|
|
}
|