about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/js_of_ocaml/lwt.nix
blob: 741dd1f6acd3aae69e2151dbccbdfcd9390d4b5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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;
  duneVersion = "3";

  buildInputs = [ js_of_ocaml-ppx ];

  propagatedBuildInputs = [ js_of_ocaml ocaml_lwt lwt_log ];

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