about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-06-02 10:40:19 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-06-18 08:41:57 -0500
commit210f6888023c1df8aff2d053a5e41f5e1effdfe7 (patch)
tree376b0af02afa925c84a968cfcc74d296b6a09f6e /pkgs/applications/networking/p2p
parent3f3d33a07867116446ec9b5e2675ef1c8de8127d (diff)
downloadnixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.tar
nixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.tar.gz
nixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.tar.bz2
nixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.tar.lz
nixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.tar.xz
nixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.tar.zst
nixlib-210f6888023c1df8aff2d053a5e41f5e1effdfe7.zip
qt5: rename qmakeHook to qmake
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index de05555633eb..4db6c9dc16bb 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, which
-, boost, libtorrentRasterbar, qmakeHook, qt5
+, boost, libtorrentRasterbar, qmake, qtbase, qttools
 , debugSupport ? false # Debugging
 , guiSupport ? true, dbus_libs ? null # GUI (disable to run headless)
 , webuiSupport ? true # WebUI
@@ -17,9 +17,9 @@ stdenv.mkDerivation rec {
     sha256 = "0vs626khavhqqnq2hrwrxyc8ihbngharcf1fd37nwccvy13qqljn";
   };
 
-  nativeBuildInputs = [ pkgconfig which ];
+  nativeBuildInputs = [ pkgconfig which qmake ];
 
-  buildInputs = [ boost libtorrentRasterbar qt5.qtbase qt5.qttools ]
+  buildInputs = [ boost libtorrentRasterbar qtbase qttools ]
     ++ optional guiSupport dbus_libs;
 
   preConfigure = ''