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

buildOcamlJane {
  pname = "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;
  };
}