summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lun/ppx.nix
blob: fc138f1a6f8a404eca8521ed7fbd667b6ca41f48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildDunePackage, fetchurl, 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;
  };
}