summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml/ppx.nix
blob: 34aecbf10bf3d6fcb939e07e5a6a8cc4cb76b235 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, js_of_ocaml-compiler
, ppxlib
, js_of_ocaml
}:

buildDunePackage {
  pname = "js_of_ocaml-ppx";

  inherit (js_of_ocaml-compiler) version src;

  buildInputs = [ js_of_ocaml ];
  propagatedBuildInputs = [ ppxlib ];

  meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
}