qt: fix qmakeHook -> qmake in few packages.

This seem to have been broken in #26336.
This commit is contained in:
Gleb Peregud
2017-06-18 19:32:51 +02:00
parent 96eaad8fd4
commit 2fb67d9b83
3 changed files with 6 additions and 6 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchgit, qmakeHook, qtwebengine, qttools, wrapGAppsHook }:
{ stdenv, fetchgit, qmake, qtwebengine, qttools, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "rssguard-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ qtwebengine qttools ];
nativeBuildInputs = [ qmakeHook wrapGAppsHook ];
nativeBuildInputs = [ qmake wrapGAppsHook ];
qmakeFlags = [ "CONFIG+=release" ];
meta = with stdenv.lib; {