mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
ba54ba9316
where none of the executables match the package's `name` or `pname`, and one of the executables is the obvious `mainProgram`.
16 lines
322 B
Nix
16 lines
322 B
Nix
{ buildDunePackage, js_of_ocaml-compiler
|
|
, ppxlib
|
|
, js_of_ocaml
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "js_of_ocaml-ppx";
|
|
|
|
inherit (js_of_ocaml-compiler) version src useDune2;
|
|
|
|
buildInputs = [ js_of_ocaml ];
|
|
propagatedBuildInputs = [ ppxlib ];
|
|
|
|
meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
|
|
}
|