nixpkgs-odroid-hc4/pkgs/development/ocaml-modules/repr/ppx.nix
2025-12-20 09:59:59 +11:00

23 lines
412 B
Nix

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