mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +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
327 B
Nix
16 lines
327 B
Nix
{ buildDunePackage, js_of_ocaml-compiler
|
|
, ppxlib, uchar
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "js_of_ocaml";
|
|
|
|
inherit (js_of_ocaml-compiler) version src useDune2;
|
|
|
|
buildInputs = [ ppxlib ];
|
|
|
|
propagatedBuildInputs = [ js_of_ocaml-compiler uchar ];
|
|
|
|
meta = builtins.removeAttrs js_of_ocaml-compiler.meta [ "mainProgram" ];
|
|
}
|