recyclarr: add openssl as a runtime dependency

When trying to reach radarr/sonarr instances that require TLS, recyclarr
fails with the following error:

    No usable version of libssl was found
    Aborted (core dumped)

Add openssl as a runtime dependency to support TLS-protected instances.

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-08-01 12:20:25 +02:00
parent 0a77c53594
commit fb2a35c933
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -8,6 +8,7 @@
, recyclarr
, git
, icu
, openssl
, testers
, zlib
}:
@ -33,8 +34,8 @@ let
}."${arch}-${os}_hash";
libPath = {
osx = "DYLD_LIBRARY_PATH : ${lib.makeLibraryPath [darwin.ICU zlib]}";
linux = "LD_LIBRARY_PATH : ${lib.makeLibraryPath [icu zlib]}";
osx = "DYLD_LIBRARY_PATH : ${lib.makeLibraryPath [darwin.ICU openssl zlib]}";
linux = "LD_LIBRARY_PATH : ${lib.makeLibraryPath [icu openssl zlib]}";
}."${os}";
in