aboutsummaryrefslogtreecommitdiff
path: root/pkgs/games/steam/fhsenv.nix
diff options
context:
space:
mode:
authorDaniel Fullmer <danielrf12@gmail.com>2020-09-11 20:19:31 -0700
committerGitHub <noreply@github.com>2020-09-11 23:19:31 -0400
commitb3de09bc52cae81148403671cfa1ae9b63eec78c (patch)
tree48b336c1e8b1640c68696114c569e118684594b8 /pkgs/games/steam/fhsenv.nix
parente0759a49733dfc3aa225b8a7423c00da6e1ecb67 (diff)
steam: fix typo in LD_LIBRARY_PATH (#97818)
Diffstat (limited to 'pkgs/games/steam/fhsenv.nix')
-rw-r--r--pkgs/games/steam/fhsenv.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/steam/fhsenv.nix b/pkgs/games/steam/fhsenv.nix
index 189c4d1c1076..2c8063d4a050 100644
--- a/pkgs/games/steam/fhsenv.nix
+++ b/pkgs/games/steam/fhsenv.nix
@@ -44,7 +44,7 @@ let
# Zachtronics and a few other studios expect STEAM_LD_LIBRARY_PATH to be present
exportLDPath = ''
- export LD_LIBRARY_PATH=/lib32:/lib64:${lib.concatStringsSep ":" ldPath}\''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
+ export LD_LIBRARY_PATH=/lib32:/lib64:${lib.concatStringsSep ":" ldPath}''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
export STEAM_LD_LIBRARY_PATH="$STEAM_LD_LIBRARY_PATH''${STEAM_LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
'';