about summary refs log tree commit diff
path: root/pkgs/desktops/xfce
diff options
context:
space:
mode:
authorpolykernel <81340136+polykernel@users.noreply.github.com>2021-08-28 11:18:03 -0400
committerpolykernel <81340136+polykernel@users.noreply.github.com>2021-08-28 11:57:59 -0400
commitca20a96b5ff3318eb136c93b44d4996e2a88fb61 (patch)
treef9d4fe44def820114ed7f3219fcbae2bfaf89965 /pkgs/desktops/xfce
parenta75378d3962b898501296b81eede9e0644696599 (diff)
downloadnixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar
nixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.gz
nixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.bz2
nixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.lz
nixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.xz
nixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.zst
nixlib-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.zip
treewide: concatStrings (intersperse ...) -> concatStringsSep ...
Update all usage of lib.concatStrings (lib.intersperse ...) to
lib.concatStringsSep. This produces the same result as per https://github.com/NixOS/nixpkgs/pull/135843,
however it yields a performance benefit on Nix versions that
support the builtins.concatStringsSep primop.
Diffstat (limited to 'pkgs/desktops/xfce')
-rw-r--r--pkgs/desktops/xfce/core/thunar/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/desktops/xfce/core/thunar/wrapper.nix b/pkgs/desktops/xfce/core/thunar/wrapper.nix
index 4e9732ce1c4a..5381dceae4a4 100644
--- a/pkgs/desktops/xfce/core/thunar/wrapper.nix
+++ b/pkgs/desktops/xfce/core/thunar/wrapper.nix
@@ -36,6 +36,6 @@ symlinkJoin {
 
     description = thunar.meta.description + optionalString
       (0 != length thunarPlugins)
-      " (with plugins: ${concatStrings (intersperse ", " (map (x: x.name) thunarPlugins))})";
+      " (with plugins: ${concatStringsSep  ", " (map (x: x.name) thunarPlugins)})";
   };
 }