mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01: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
1 changed files with 3 additions and 0 deletions
|
@ -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 a new issue