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

16 lines
457 B
Nix
Raw Normal View History

2016-09-13 21:47:01 +00:00
{stdenv, buildOcamlJane,
ppx_core, ppx_optcomp}:
2019-08-13 21:52:01 +00:00
buildOcamlJane {
2016-09-13 21:47:01 +00:00
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";
2016-09-13 21:47:01 +00:00
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}