···8484 # after loading. It is brought into plugins bin/ directory using
8585 # buildEnv in the plugin derivation. Wrapper below makes sure it
8686 # is found and does not pollute output path.
8787- binPaths = lib.concatStrings (lib.intersperse ":" (map (x: x + "/bin") plugins));
8787+ binPaths = lib.concatStringsSep ":" (map (x: x + "/bin") plugins);
88888989 dynlibPath = lib.makeLibraryPath [ gtk2 ];
9090
···3636 nativeBuildInputs = [ makeWrapper ];
37373838 buildCommand = with lib;
3939- concatStrings (intersperse "\n" (map exeWrapper backends));
3939+ concatStringsSep "\n" (map exeWrapper backends);
40404141 # Will be faster to build the wrapper locally then to fetch it from a binary cache.
4242 preferLocalBuild = true;