cool-retro-term: Add running {pre,post}Configure
Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of cool-retro-term override the whole configurePhase, so this hook isn't run at all. This fixes the build of cool-retro-term and it now successfully compiles on my machine. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
2d6ea2cc30
commit
44a2ca4a34
@ -19,7 +19,11 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ qtbase qtquick1 qmltermwidget qtquickcontrols qtgraphicaleffects ];
|
||||
nativeBuildInputs = [ makeQtWrapper ];
|
||||
|
||||
configurePhase = "qmake PREFIX=$out";
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
qmake PREFIX=$out
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
installPhase = "make -j $NIX_BUILD_CORES INSTALL_ROOT=$out install";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user