tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nuspell: fix wrapper arguments escaping
Naïm Favier
3 years ago
2f341cd4
215fcc72
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
nuspell
wrapper.nix
+1
-1
pkgs/development/libraries/nuspell/wrapper.nix
···
7
7
name = (appendToName "with-dicts" nuspell).name;
8
8
nativeBuildInputs = [ makeWrapper ];
9
9
buildCommand = ''
10
10
-
makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${searchPath}
10
10
+
makeWrapper ${nuspell}/bin/nuspell $out/bin/nuspell --prefix DICPATH : ${lib.escapeShellArg searchPath}
11
11
'';
12
12
meta = removeAttrs nuspell.meta ["outputsToInstall"];
13
13
}