summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/janestreet/ppx-let.nix
blob: 3498affeb090095230e0e2c6589e88663fb4d852 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                                 
{stdenv, buildOcamlJane,
 ppx_core, ppx_driver}:

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

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