4d5a95770c
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
24 lines
435 B
Nix
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";
|
|
};
|
|
}
|