summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/janestreet/ppx-here.nix
blob: 95ebb59faf9f58dc210d8faab9762837f3cb4a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{lib, stdenv, buildOcamlJane,
 ppx_core, ppx_driver}:

buildOcamlJane {
  name = "ppx_here";
  hash = "1mzdgn8k171zkwmbizf1a48l525ny0w3363c7gknpnifcinxniiw";
  propagatedBuildInputs = [ ppx_core ppx_driver ];

  meta = with lib; {
    description = "A ppx rewriter that defines an extension node whose value is its source position";
    maintainers = [ maintainers.maurer ];
    license = licenses.asl20;
  };
}