Context: I’m trying to use mongodb-memory-server nodejs package (see Add Support for NixOS · Issue #782 · nodkz/mongodb-memory-server · GitHub). When running trying to use it I get the error Instance failed to start because a library is missing or cannot be opened: "libcrypto.so.1.1"
I’m adding some packages to the LD_LIBRARY_PATH, but cannot figure out which one for libcrypto.so.1.1
''
export LD_LIBRARY_PATH="${
lib.makeLibraryPath
(with pkgs; [ stdenv.cc.cc openssl libGL libuuid curlFull ])
}:$LD_LIBRARY_PATH"
''