nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-here.nix

15 lines
405 B
Nix
Raw Normal View History

{lib, buildOcamlJane,
2016-09-14 00:23:00 +02:00
ppx_core, ppx_driver}:
2019-08-13 23:52:01 +02:00
buildOcamlJane {
2021-11-16 00:43:14 +01:00
pname = "ppx_here";
2016-09-14 00:23:00 +02:00
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";
2016-09-14 00:23:00 +02:00
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}