-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Prisma detects openssl version in the order of os specific paths -> ldconfig -> generic paths -> output of `openssl -v`. (code)
If that detection fails, prisma will warn
prisma:warn Prisma failed to detect the libssl/openssl version to use, and may not work as expected. Defaulting to "openssl-1.1.x".
Please manually install OpenSSL and try installing Prisma again.
Since only openssl -v works on NixOS, maybe we should add openssl to dev shell packages to solve this warning?
pkgs.mkShell {
packages = with pkgs; [
openssl
];
env = prisma.env;
}Metadata
Metadata
Assignees
Labels
No labels