mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
12 lines
180 B
Bash
12 lines
180 B
Bash
|
qmakeConfigurePhase() {
|
||
|
runHook preConfigure
|
||
|
|
||
|
$QMAKE PREFIX=$out $qmakeFlags
|
||
|
|
||
|
runHook postConfigure
|
||
|
}
|
||
|
|
||
|
export QMAKE=@qt4@/bin/qmake
|
||
|
|
||
|
configurePhase=qmakeConfigurePhase
|