treewide: remove double quotes from wrappers
Close #14753; see that for context.
This commit is contained in:
parent
c05d829598
commit
4a7d31a392
@ -48,8 +48,8 @@ stdenv.mkDerivation {
|
|||||||
--prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \
|
--prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \
|
||||||
--prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/usr/share/:$out/share/:$GSETTINGS_SCHEMAS_PATH" \
|
--prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/usr/share/:$out/share/:$GSETTINGS_SCHEMAS_PATH" \
|
||||||
--prefix XDG_CONFIG_DIRS : "$out/etc/xdg" \
|
--prefix XDG_CONFIG_DIRS : "$out/etc/xdg" \
|
||||||
--set LUA_PATH '"${luaKitPath};${luaPath};"' \
|
--set LUA_PATH '${luaKitPath};${luaPath};' \
|
||||||
--set LUA_CPATH '"${luaCPath};"'
|
--set LUA_CPATH '${luaCPath};'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,7 @@ in mkTkabber (main // {
|
|||||||
for prog in $out/bin/*; do
|
for prog in $out/bin/*; do
|
||||||
wrapProgram "$prog" \
|
wrapProgram "$prog" \
|
||||||
--prefix PATH : "${tk}/bin" \
|
--prefix PATH : "${tk}/bin" \
|
||||||
--set TCLLIBPATH '"${tclLibPaths}"' \
|
--set TCLLIBPATH '${tclLibPaths}' \
|
||||||
${optionalString withSitePlugins ''
|
${optionalString withSitePlugins ''
|
||||||
--set TKABBER_SITE_PLUGINS '${mkTkabber plugins}/share/tkabber-plugins'
|
--set TKABBER_SITE_PLUGINS '${mkTkabber plugins}/share/tkabber-plugins'
|
||||||
''}
|
''}
|
||||||
|
@ -35,9 +35,9 @@ buildPythonApplication rec {
|
|||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/qtile \
|
wrapProgram $out/bin/qtile \
|
||||||
--set QTILE_WRAPPER '"$0"' \
|
--set QTILE_WRAPPER '$0' \
|
||||||
--set QTILE_SAVED_PYTHONPATH '"$PYTHONPATH"' \
|
--set QTILE_SAVED_PYTHONPATH '$PYTHONPATH' \
|
||||||
--set QTILE_SAVED_PATH '"$PATH"'
|
--set QTILE_SAVED_PATH '$PATH'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
|||||||
for i in "$out"/bin/*; do
|
for i in "$out"/bin/*; do
|
||||||
wrapProgram "$i" \
|
wrapProgram "$i" \
|
||||||
--prefix "PATH" : "${java}/bin/" \
|
--prefix "PATH" : "${java}/bin/" \
|
||||||
--set "FUSEKI_HOME" '"''${FUSEKI_HOME:-'"$out"'}"' \
|
--set "FUSEKI_HOME" '${FUSEKI_HOME:-'"$out"'}' \
|
||||||
;
|
;
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
@ -46,12 +46,12 @@ stdenv.mkDerivation rec {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
cp $communityModules/mod_websocket/mod_websocket.lua $out/lib/prosody/modules/
|
cp $communityModules/mod_websocket/mod_websocket.lua $out/lib/prosody/modules/
|
||||||
wrapProgram $out/bin/prosody \
|
wrapProgram $out/bin/prosody \
|
||||||
--set LUA_PATH '"${luaPath};"' \
|
--set LUA_PATH '${luaPath};' \
|
||||||
--set LUA_CPATH '"${luaCPath};"'
|
--set LUA_CPATH '${luaCPath};'
|
||||||
wrapProgram $out/bin/prosodyctl \
|
wrapProgram $out/bin/prosodyctl \
|
||||||
--add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
|
--add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
|
||||||
--set LUA_PATH '"${luaPath};"' \
|
--set LUA_PATH '${luaPath};' \
|
||||||
--set LUA_CPATH '"${luaCPath};"'
|
--set LUA_CPATH '${luaCPath};'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user