summary refs log tree commit diff
path: root/pkgs/applications/video/vdr
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-05-06 18:30:18 +0200
committerNaïm Favier <n@monade.li>2022-05-06 18:30:18 +0200
commit0b9414528838e42803d384816aa7913108ee1d13 (patch)
treef6616c3c465af4ea119ed7dd03db0b901eae0085 /pkgs/applications/video/vdr
parent76f93323f278fed174ba646018572040ed756110 (diff)
vdr: fix wrapper arguments escaping
Diffstat (limited to 'pkgs/applications/video/vdr')
-rw-r--r--pkgs/applications/video/vdr/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/video/vdr/wrapper.nix b/pkgs/applications/video/vdr/wrapper.nix
index 04984212b249c..431d2dae4f049 100644
--- a/pkgs/applications/video/vdr/wrapper.nix
+++ b/pkgs/applications/video/vdr/wrapper.nix
@@ -17,7 +17,7 @@ in symlinkJoin {
   postBuild = ''
     wrapProgram $out/bin/vdr \
       --add-flags "-L $out/lib/vdr --localedir=$out/share/locale" \
-      --prefix XINE_PLUGIN_PATH ":" ${makeXinePluginPath requiredXinePlugins}
+      --prefix XINE_PLUGIN_PATH ":" ${lib.escapeShellArg (makeXinePluginPath requiredXinePlugins)}
   '';
 
   meta = with vdr.meta; {