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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user