lol

ppx_pipebang: init at 113.33.03

+16
+14
pkgs/development/ocaml-modules/janestreet/ppx-pipebang.nix
··· 1 + {stdenv, buildOcamlJane, 2 + ppx_core, ppx_driver, ppx_tools}: 3 + 4 + buildOcamlJane rec { 5 + name = "ppx_pipebang"; 6 + hash = "0k25bhj9ziiw89xvs4svz7cgazbbmprba9wbic2llffg55fp7acc"; 7 + propagatedBuildInputs = [ ppx_core ppx_driver ppx_tools ]; 8 + 9 + meta = with stdenv.lib; { 10 + description = "A ppx rewriter that inlines reverse application operators |> and |!"; 11 + maintainers = [ maintainers.maurer ]; 12 + license = licenses.asl20; 13 + }; 14 + }
+2
pkgs/top-level/all-packages.nix
··· 5543 5543 ppx_fields_conv = callPackage ../development/ocaml-modules/janestreet/ppx-fields-conv.nix {}; 5544 5544 5545 5545 ppx_let = callPackage ../development/ocaml-modules/janestreet/ppx-let.nix {}; 5546 + 5547 + ppx_pipebang = callPackage ../development/ocaml-modules/janestreet/ppx-pipebang.nix {}; 5546 5548 }; 5547 5549 5548 5550 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;