about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2023-09-08 17:51:46 -0400
committerAndrew Marshall <andrew@johnandrewmarshall.com>2023-09-08 18:15:21 -0400
commit36a51e27cbcbd8c77ccf67cb79c738e391d0e9ad (patch)
treecc50f80c9ebd9e3c06c465d60e006c8e48f8efef /pkgs
parentae0f776b7200c82e0e78c6214ae0dad6369b742d (diff)
makemkv: enable parallel building
Reduces build time 2m50s → 1m50s with my hardware.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/makemkv/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix
index 77b2bd7b63062..3305c9c84aa6a 100644
--- a/pkgs/applications/video/makemkv/default.nix
+++ b/pkgs/applications/video/makemkv/default.nix
@@ -41,6 +41,8 @@ in mkDerivation {
 
   patches = [ ./r13y.patch ];
 
+  enableParallelBuilding = true;
+
   nativeBuildInputs = [ autoPatchelfHook pkg-config ];
 
   buildInputs = [ ffmpeg openssl qtbase zlib ];