makemkv: add libcurl to runtimeDependencies

This allows MakeMKV to download some files at runtime that are necessary
for reading certain discs.
main
Jonathan Rudenberg 3 years ago
parent 389610b208
commit 717bac8a4d
  1. 3
      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 ];

Loading…
Cancel
Save