nixpkgs/pkgs/development/ocaml-modules/repr/ppx.nix
2021-01-24 21:04:02 +01:00

24 lines
371 B
Nix

{ 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";
};
}