git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
11 lines
311 B
Nix
11 lines
311 B
Nix
{ buildDunePackage, js_of_ocaml-compiler, ppxlib }:
|
|
|
|
buildDunePackage {
|
|
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";
|
|
};
|
|
}
|