depot/pkgs/development/ocaml-modules/lun/ppx.nix

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

18 lines
319 B
Nix
Raw Normal View History

{ 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;
};
}