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

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

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