smtube: fix build after qmakeHook

This commit is contained in:
Vincent Laporte 2016-04-28 21:38:16 +00:00
parent 5de3cfe210
commit ce7181f9a8

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, qtscript, qtwebkit }: { stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "16.1.0"; version = "16.1.0";
@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
"PREFIX=$(out)" "PREFIX=$(out)"
]; ];
buildInputs = [ qtscript qtwebkit ]; dontUseQmakeConfigure = true;
buildInputs = [ qmakeHook qtscript qtwebkit ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Play and download Youtube videos"; description = "Play and download Youtube videos";