lol

ppx_let: init at 113.33.03

+16
+14
pkgs/development/ocaml-modules/janestreet/ppx-let.nix
··· 1 + {stdenv, buildOcamlJane, 2 + ppx_core, ppx_driver}: 3 + 4 + buildOcamlJane rec { 5 + name = "ppx_let"; 6 + hash = "0whnfq4rgkq4apfqnvc100wlk25pmqdyvy6s21dsn3fcm9hff467"; 7 + propagatedBuildInputs = [ ppx_core ppx_driver ]; 8 + 9 + meta = with stdenv.lib; { 10 + description = "A ppx rewriter for monadic and applicative let bindings and match statements"; 11 + maintainers = [ maintainers.maurer ]; 12 + license = licenses.asl20; 13 + }; 14 + }
+2
pkgs/top-level/all-packages.nix
··· 5541 5541 ppx_fail = callPackage ../development/ocaml-modules/janestreet/ppx-fail.nix {}; 5542 5542 5543 5543 ppx_fields_conv = callPackage ../development/ocaml-modules/janestreet/ppx-fields-conv.nix {}; 5544 + 5545 + ppx_let = callPackage ../development/ocaml-modules/janestreet/ppx-let.nix {}; 5544 5546 }; 5545 5547 5546 5548 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;