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

buildDunePackage {
  pname = "js_of_ocaml-lwt";

  inherit (js_of_ocaml-compiler) version src;

  buildInputs = [ js_of_ocaml-ppx ];

  propagatedBuildInputs = [ js_of_ocaml ocaml_lwt lwt_log ];

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