ocamlPackages.js_of_ocaml-toplevel: init at 4.1.0

This commit is contained in:
Vincent Laporte 2022-12-31 11:42:27 +01:00 committed by Vincent Laporte
parent d1934479ba
commit 54d363b012
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ lib, buildDunePackage, js_of_ocaml-compiler, ppxlib }:
buildDunePackage {
duneVersion = "3";
pname = "js_of_ocaml-toplevel";
inherit (js_of_ocaml-compiler) src version;
buildInputs = [ ppxlib ];
propagatedBuildInputs = [ js_of_ocaml-compiler ];
meta = js_of_ocaml-compiler.meta // {
mainProgram = "jsoo_mktop";
};
}

View file

@ -664,6 +664,8 @@ let
js_of_ocaml-ppx_deriving_json = callPackage ../development/tools/ocaml/js_of_ocaml/ppx_deriving_json.nix { };
js_of_ocaml-toplevel = callPackage ../development/tools/ocaml/js_of_ocaml/toplevel.nix {};
js_of_ocaml-tyxml = callPackage ../development/tools/ocaml/js_of_ocaml/tyxml.nix {};
jsonm = callPackage ../development/ocaml-modules/jsonm { };