diff options
| -rw-r--r-- | shell.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,9 +33,9 @@ pkgs.mkShell { rustc rustup ] else []); - RUST_SRC_PATH = if install_opt_deps then "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}" else ""; + RUST_SRC_PATH = if install_opt_deps then "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}" else ''''; shellHook = if install_opt_deps then '' export LD_LIBRARY_PATH=${pkgs.lib.makeLibraryPath libraries}:$LD_LIBRARY_PATH export XDG_DATA_DIRS=${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}:${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}:$XDG_DATA_DIRS - '' else ""; + '' else ''''; } |
