mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
ppx_driver: init at 113.33.03
This commit is contained in:
parent
5bdce80515
commit
a65e53d768
2 changed files with 16 additions and 0 deletions
15
pkgs/development/ocaml-modules/janestreet/ppx-driver.nix
Normal file
15
pkgs/development/ocaml-modules/janestreet/ppx-driver.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue