ocamlPackages.camomile: fix output dest dir
Add missing pre/post hooks - preConfigure is now required to set correct ocaml dest dir as findlib sets a necessary preConfigure hook
This commit is contained in:
parent
6310613bb0
commit
3a5fc1aad4
1 changed files with 5 additions and 1 deletions
|
@ -15,7 +15,11 @@ buildDunePackage rec {
|
|||
|
||||
buildInputs = [ cppo ];
|
||||
|
||||
configurePhase = "ocaml configure.ml --share $out/share/camomile";
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
ocaml configure.ml --share $out/share/camomile
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
meta = {
|
||||
inherit (src.meta) homepage;
|
||||
|
|
Loading…
Reference in a new issue