ocamlPackages.ppx_lun: init at 0.0.1

This commit is contained in:
Mario Rodas 2023-10-01 04:20:00 +00:00 committed by Vincent Laporte
parent 0c1938bfd9
commit c6e3bbc550
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

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