makemkv: add libcurl to runtimeDependencies

This allows MakeMKV to download some files at runtime that are necessary
for reading certain discs.
This commit is contained in:
Jonathan Rudenberg 2021-11-20 13:07:05 -05:00
parent 389610b208
commit 717bac8a4d

View File

@ -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 ];