qt5: rename qmakeHook to qmake

This commit is contained in:
Thomas Tuegel
2017-06-18 08:41:57 -05:00
parent 3f3d33a078
commit 210f688802
65 changed files with 165 additions and 151 deletions
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, unzip
, qt4 ? null, qmake4Hook ? null
, withQt5 ? false, qtbase ? null, qmakeHook ? null
, withQt5 ? false, qtbase ? null, qmake ? null
}:
stdenv.mkDerivation rec {
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
};
buildInputs = if withQt5 then [ qtbase ] else [ qt4 ];
nativeBuildInputs = [ unzip ] ++ (if withQt5 then [ qmakeHook ] else [ qmake4Hook ]);
nativeBuildInputs = [ unzip ] ++ (if withQt5 then [ qmake ] else [ qmake4Hook ]);
enableParallelBuilding = true;