Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
395 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fmt,
lun,
ppxlib,
}:
buildDunePackage {
pname = "ppx_lun";
inherit (lun) version src;
propagatedBuildInputs = [
lun
ppxlib
];
checkInputs = [ fmt ];
doCheck = true;
meta = lun.meta // {
description = "Optics with lun package and PPX";
license = lib.licenses.mit;
broken = lib.versionAtLeast ppxlib.version "0.36";
};
}