DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

fa91d687e6f2e7c408475015366da8f3f84bf49c — Jonni Liljamo 1 year, 7 months ago bec1a42
feat: add openssl to shell.nix
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;
}