mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
Merge pull request #331498 from Scrumplex/pkgs/recyclarr/ssl
recyclarr: add openssl as a runtime dependency
This commit is contained in:
commit
d8e49dbc91
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue