mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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:
parent
389610b208
commit
717bac8a4d
@ -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…
Reference in New Issue
Block a user