1 files changed, 3 insertions(+), 1 deletions(-)
M shell.nix
M shell.nix => shell.nix +3 -1
@@ 20,9 20,11 @@ pkgs.mkShell {
mold
postgresql_15.lib
+
+ openssl
]);
shellHook = ''
- export LD_LIBRARY_PATH="${lib.makeLibraryPath [ pkgs.postgresql_15.lib ]}";
+ export LD_LIBRARY_PATH="${lib.makeLibraryPath [ pkgs.postgresql_15.lib pkgs.openssl ]}";
'';
#RUST_BACKTRACE = 1;
}