antimony: Fix running of {pre,post}Configure
Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of antimony override the whole configurePhase, so this hook isn't run at all. This fixes the build of antimony and it now successfully compiles on my machine. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
8779e0f274
commit
9fa8fb1dec
@ -32,6 +32,7 @@ in
|
||||
];
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
export GITREV=${gitRev}
|
||||
export GITBRANCH=${gitBranch}
|
||||
export GITTAG=${gitTag}
|
||||
@ -39,6 +40,7 @@ in
|
||||
cd qt
|
||||
export sourceRoot=$sourceRoot/qt
|
||||
qmake antimony.pro PREFIX=$out
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
Loading…
Reference in New Issue
Block a user