summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-10-20 11:43:14 +0200
committerGitHub <noreply@github.com>2021-10-20 11:43:14 +0200
commit8d9aeada6d7448a9304815b967cd207f28ca36a1 (patch)
tree605130f15d67fb0f40634ea327d229f8e6afd503 /pkgs/tools/networking/p2p
parent5d7c762139f87e3dc72e7cc26442df23baa35135 (diff)
parent9e510d0ab1eee6a3bd8483b3d291414fa97a8d0b (diff)
downloadnixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.tar
nixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.tar.gz
nixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.tar.bz2
nixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.tar.lz
nixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.tar.xz
nixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.tar.zst
nixpkgs-8d9aeada6d7448a9304815b967cd207f28ca36a1.zip
Merge pull request #142317 from trofi/parallel-libtorrent
Diffstat (limited to 'pkgs/tools/networking/p2p')
-rw-r--r--pkgs/tools/networking/p2p/libtorrent/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/tools/networking/p2p/libtorrent/default.nix b/pkgs/tools/networking/p2p/libtorrent/default.nix
index 4d3ccf5fc15..9a635512f04 100644
--- a/pkgs/tools/networking/p2p/libtorrent/default.nix
+++ b/pkgs/tools/networking/p2p/libtorrent/default.nix
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkg-config autoreconfHook ];
   buildInputs = [ cppunit openssl libsigcxx zlib ];
 
+  enableParallelBuilding = true;
+
   meta = with lib; {
     homepage = "https://github.com/rakshasa/libtorrent";
     description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code";