ocamlPackages.ppx_typed_fields: 0.17.0 → 0.17.1

This commit is contained in:
Vincent Laporte
2025-10-20 02:16:07 +02:00
parent f2c975bca0
commit 80e35e8539
@@ -1759,17 +1759,29 @@ with self;
)
);
ppx_typed_fields = janePackage {
pname = "ppx_typed_fields";
hash = "sha256-aTPEBBc1zniZkEmzubGkU064bwGnefBOjVDqTdPm2w8=";
meta.description = "GADT-based field accessors and utilities";
propagatedBuildInputs = [
core
ppx_jane
ppxlib
];
meta.broken = lib.versionAtLeast ppxlib.version "0.36";
};
ppx_typed_fields = janePackage (
{
pname = "ppx_typed_fields";
meta.description = "GADT-based field accessors and utilities";
propagatedBuildInputs = [
core
ppx_jane
ppxlib
];
}
// (
if lib.versionAtLeast ppxlib.version "0.36" then
{
version = "0.17.1";
hash = "sha256-M+UhZst98gRg6pVg828UZn8AEFK2a/KAzGkuUkWoBaI=";
}
else
{
version = "0.17.0";
hash = "sha256-aTPEBBc1zniZkEmzubGkU064bwGnefBOjVDqTdPm2w8=";
}
)
);
ppx_typerep_conv = janePackage (
{