mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
17 lines
339 B
Nix
17 lines
339 B
Nix
{ buildDunePackage, js_of_ocaml-compiler
|
|
, ppxlib, uchar
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "js_of_ocaml";
|
|
|
|
inherit (js_of_ocaml-compiler) version src;
|
|
duneVersion = "3";
|
|
|
|
buildInputs = [ ppxlib ];
|
|
|
|
propagatedBuildInputs = [ js_of_ocaml-compiler uchar ];
|
|
|
|
meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
|
|
}
|