summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-let.nix
blob: 49333fb0e8653841c27d23b3e5e7df574dd208ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{lib, buildOcamlJane,
 ppx_core, ppx_driver}:

buildOcamlJane {
  name = "ppx_let";
  hash = "0whnfq4rgkq4apfqnvc100wlk25pmqdyvy6s21dsn3fcm9hff467";
  propagatedBuildInputs = [ ppx_core ppx_driver ];

  meta = with lib; {
    description = "A ppx rewriter for monadic and applicative let bindings and match statements";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}