about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2017-07-03 21:22:53 +0200
committerGitHub <noreply@github.com>2017-07-03 21:22:53 +0200
commit24ec6634f4df0683bcf7b32dcf5499d4409a4030 (patch)
tree6b5e18f3a7ff8f095bade62adebb2a90e995f6c2 /pkgs/applications/networking
parente02d40c33e6d556d7d9b684c45841287f8b5df68 (diff)
parent85a8323e8f2964b9a7cfd4021e2f7cb73c0ad7b0 (diff)
downloadnixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.tar
nixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.tar.gz
nixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.tar.bz2
nixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.tar.lz
nixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.tar.xz
nixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.tar.zst
nixlib-24ec6634f4df0683bcf7b32dcf5499d4409a4030.zip
Merge pull request #27010 from rasendubi/qbittorrent-qmake
qbittorrent: fix build
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 4db6c9dc16bb..458aa677b89f 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, qmake, qtbase, qttools
+, boost, libtorrentRasterbar, qtbase, qttools
 , debugSupport ? false # Debugging
 , guiSupport ? true, dbus_libs ? null # GUI (disable to run headless)
 , webuiSupport ? true # WebUI
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     sha256 = "0vs626khavhqqnq2hrwrxyc8ihbngharcf1fd37nwccvy13qqljn";
   };
 
-  nativeBuildInputs = [ pkgconfig which qmake ];
+  nativeBuildInputs = [ pkgconfig which ];
 
   buildInputs = [ boost libtorrentRasterbar qtbase qttools ]
     ++ optional guiSupport dbus_libs;
@@ -34,9 +34,9 @@ stdenv.mkDerivation rec {
   ] ++ optional debugSupport "--enable-debug";
 
   # The lrelease binary is named lrelease instead of lrelease-qt4
-  patches = [ ./fix-lrelease.patch];
+  patches = [ ./fix-lrelease.patch ];
 
-  # https://github.com/qbittorrent/qBittorrent/issues/1992 
+  # https://github.com/qbittorrent/qBittorrent/issues/1992
   enableParallelBuilding = false;
 
   meta = {