From 717bac8a4d88852d8a71e5ea91fc13064da9c0a0 Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Sat, 20 Nov 2021 13:07:05 -0500 Subject: [PATCH] makemkv: add libcurl to runtimeDependencies This allows MakeMKV to download some files at runtime that are necessary for reading certain discs. --- pkgs/applications/video/makemkv/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index 122274930367..26d80b1596c2 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -3,6 +3,7 @@ , fetchurl , autoPatchelfHook , pkg-config +, curl , ffmpeg , openssl , qtbase @@ -42,6 +43,8 @@ in mkDerivation { buildInputs = [ ffmpeg openssl qtbase zlib ]; + runtimeDependencies = [ (lib.getLib curl) ]; + qtWrapperArgs = let binPath = lib.makeBinPath [ jre_headless ];