about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorJonathan Rudenberg <jonathan@titanous.com>2021-11-20 13:07:05 -0500
committerJonathan Rudenberg <jonathan@titanous.com>2021-11-20 13:09:15 -0500
commit717bac8a4d88852d8a71e5ea91fc13064da9c0a0 (patch)
tree5a941878080c3660d92f7125a3bf17bb2d1ffb7b /pkgs/applications/video
parent389610b2081486dd3c15220ad14066c452321ae0 (diff)
makemkv: add libcurl to runtimeDependencies
This allows MakeMKV to download some files at runtime that are necessary
for reading certain discs.
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/makemkv/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix
index 1222749303671..26d80b1596c2c 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 ];