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:
Ryan Burns 2021-09-05 18:21:14 -07:00 committed by Raphael Megzari
parent 6310613bb0
commit 3a5fc1aad4

View File

@ -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;