mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
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
@ -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 New Issue
Block a user