From 36a51e27cbcbd8c77ccf67cb79c738e391d0e9ad Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Fri, 8 Sep 2023 17:51:46 -0400 Subject: [PATCH] makemkv: enable parallel building MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reduces build time 2m50s → 1m50s with my hardware. --- pkgs/applications/video/makemkv/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index 77b2bd7b6306..3305c9c84aa6 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 ];