depot/third_party/nixpkgs/pkgs/development/ocaml-modules/repr/ppx.nix
Default email 4d5a95770c Project import generated by Copybara.
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
2023-03-04 15:14:45 +03:00

24 lines
435 B
Nix

{ lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }:
buildDunePackage {
pname = "ppx_repr";
inherit (repr) src version strictDeps;
duneVersion = "3";
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";
};
}