nuspell: fix wrapper arguments escaping
This commit is contained in:
parent
215fcc7256
commit
2f341cd427
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ stdenv.mkDerivation {
|
|||
name = (appendToName "with-dicts" nuspell).name;
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildCommand = ''
|
||||
makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath}
|
||||
makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${lib.escapeShellArg searchPath}
|
||||
'';
|
||||
meta = removeAttrs nuspell.meta ["outputsToInstall"];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue