about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-04-28 21:38:16 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-04-29 07:21:31 +0000
commitce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9 (patch)
tree816ccf3446c7fa4ea2a0e638585271bef719ac61 /pkgs/applications
parent5de3cfe21039153757236d9569543e674cfaa6b6 (diff)
downloadnixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.tar
nixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.tar.gz
nixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.tar.bz2
nixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.tar.lz
nixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.tar.xz
nixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.tar.zst
nixlib-ce7181f9a8fcfaca0fd8ac45e98f5ff377a9a3d9.zip
smtube: fix build after qmakeHook
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/smtube/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/video/smtube/default.nix b/pkgs/applications/video/smtube/default.nix
index 68c0d7f58120..729c90d052c6 100644
--- a/pkgs/applications/video/smtube/default.nix
+++ b/pkgs/applications/video/smtube/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qtscript, qtwebkit }:
+{ stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }:
 
 stdenv.mkDerivation rec {
   version = "16.1.0";
@@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
     "PREFIX=$(out)"
   ];
 
-  buildInputs = [ qtscript qtwebkit ];
+  dontUseQmakeConfigure = true;
+
+  buildInputs = [ qmakeHook qtscript qtwebkit ];
 
   meta = with stdenv.lib; {
     description = "Play and download Youtube videos";