nuspell: fix wrapper arguments escaping

+1 -1
+1 -1
pkgs/development/libraries/nuspell/wrapper.nix
··· 7 7 name = (appendToName "with-dicts" nuspell).name; 8 8 nativeBuildInputs = [ makeWrapper ]; 9 9 buildCommand = '' 10 - makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath} 10 + makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${lib.escapeShellArg searchPath} 11 11 ''; 12 12 meta = removeAttrs nuspell.meta ["outputsToInstall"]; 13 13 }