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:
aszlig 2016-04-15 01:34:42 +02:00
parent 8779e0f274
commit 9fa8fb1dec
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

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