depot/third_party/nixpkgs/pkgs/development/ocaml-modules/repr/ppx.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

23 lines
414 B
Nix

{ lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
buildDunePackage {
pname = "ppx_repr";
inherit (repr) src version strictDeps;
propagatedBuildInputs = [
ppx_deriving
ppxlib
repr
];
doCheck = false; # tests fail with ppxlib >= 0.23.0
checkInputs = [
alcotest
hex
];
meta = repr.meta // {
description = "PPX deriver for type representations";
};
}