Commit c6e3bbc5 authored by Mario Rodas's avatar Mario Rodas Committed by Vincent Laporte
Browse files

ocamlPackages.ppx_lun: init at 0.0.1

parent 0c1938bf
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1488,6 +1488,8 @@ let

    ppx_irmin = callPackage ../development/ocaml-modules/irmin/ppx.nix { };

    ppx_lun = callPackage ../development/ocaml-modules/lun/ppx.nix { };

    ppx_monad = callPackage ../development/ocaml-modules/ppx_monad { };

    ppx_repr = callPackage ../development/ocaml-modules/repr/ppx.nix { };