ppx_driver: init at 113.33.03

This commit is contained in:
Matthew Maurer 2016-09-13 17:47:01 -04:00
parent 5bdce80515
commit a65e53d768
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, buildOcamlJane,
ppx_core, ppx_optcomp}:
buildOcamlJane rec {
name = "ppx_driver";
hash = "19cpfdn1n36vl5l9d6h7c61ffn0wmiipprn5by0354i5aywj8gpn";
propagatedBuildInputs =
[ ppx_core ppx_optcomp ];
meta = with stdenv.lib; {
description = "A driver is an executable created from a set of OCaml AST transformers linked together with a command line frontend.";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}

View file

@ -5511,6 +5511,7 @@ in
ppx_optcomp = callPackage ../development/ocaml-modules/janestreet/ppx-optcomp.nix {};
ppx_driver = callPackage ../development/ocaml-modules/janestreet/ppx-driver.nix {};
};
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;