ocamlPackages.{repr,ppx_repr}: init at 0.2.1

This commit is contained in:
sternenseemann
2021-01-24 21:04:02 +01:00
committed by Vincent Laporte
parent 7fee56ec59
commit a7a61998e9
3 changed files with 57 additions and 0 deletions
@@ -0,0 +1,23 @@
{ buildDunePackage, repr, ppxlib, ppx_deriving, alcotest, hex }:
buildDunePackage {
pname = "ppx_repr";
inherit (repr) src version useDune2;
propagatedBuildInputs = [
repr
ppxlib
ppx_deriving
];
doCheck = true;
checkInputs = [
alcotest
hex
];
meta = repr.meta // {
description = "PPX deriver for type representations";
};
}