From fb2a35c93307cb34eba5a5e6de6abbea47340909 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Thu, 1 Aug 2024 12:20:25 +0200 Subject: [PATCH] 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 --- pkgs/tools/video/recyclarr/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/video/recyclarr/default.nix b/pkgs/tools/video/recyclarr/default.nix index aef05e2a731f..9dcdfd799b87 100644 --- a/pkgs/tools/video/recyclarr/default.nix +++ b/pkgs/tools/video/recyclarr/default.nix @@ -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