From 1ebe02e65046dbc3d309218504227a8165d7462c Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 2 Jun 2024 07:46:30 +1000 Subject: [PATCH] Nix expr: Include trailing slash on `BIZHAWK_HOME` --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 0483f72613..1d5332c702 100644 --- a/shell.nix +++ b/shell.nix @@ -23,7 +23,7 @@ inputsFrom = [ drv ]; shellHook = '' export BIZHAWKBUILD_HOME='${builtins.toString ./.}' - export BIZHAWK_HOME="$BIZHAWKBUILD_HOME/output" + export BIZHAWK_HOME="$BIZHAWKBUILD_HOME/output/" ldLibPath='${lib.makeLibraryPath drv.buildInputs}' # for running tests if [ -z "$LD_LIBRARY_PATH" ]; then export LD_LIBRARY_PATH="$ldLibPath"