about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-10-02 00:21:50 +0200
committerDomen Kožar <domen@dev.si>2014-10-02 00:21:50 +0200
commit7706c08287e56cabc18f389053a27e77f2515efd (patch)
treef294c37d6dc6fb9ba9f99837450554b004cd4995 /pkgs/applications/networking
parent63bacb79b1b19e5c3b50061fd015b8dc672164e8 (diff)
downloadnixlib-7706c08287e56cabc18f389053a27e77f2515efd.tar
nixlib-7706c08287e56cabc18f389053a27e77f2515efd.tar.gz
nixlib-7706c08287e56cabc18f389053a27e77f2515efd.tar.bz2
nixlib-7706c08287e56cabc18f389053a27e77f2515efd.tar.lz
nixlib-7706c08287e56cabc18f389053a27e77f2515efd.tar.xz
nixlib-7706c08287e56cabc18f389053a27e77f2515efd.tar.zst
nixlib-7706c08287e56cabc18f389053a27e77f2515efd.zip
qbittorrent: disable parallel building due to failures
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index b896cc8e05bc..ccf129881f5d 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -15,7 +15,8 @@ stdenv.mkDerivation rec {
   configureFlags = "--with-libboost-inc=${boost}/include "
     + "--with-libboost-lib=${boost}/lib";
 
-  enableParallelBuilding = true;
+  # https://github.com/qbittorrent/qBittorrent/issues/1992 
+  #enableParallelBuilding = true;
 
   meta = with stdenv.lib; {
     description = "Free Software alternative to µtorrent";