summary refs log tree commit diff
path: root/pkgs/applications/misc/keepass
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/applications/misc/keepass
parenta75378d3962b898501296b81eede9e0644696599 (diff)
downloadnixpkgs-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar
nixpkgs-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.gz
nixpkgs-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.bz2
nixpkgs-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.lz
nixpkgs-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.xz
nixpkgs-ca20a96b5ff3318eb136c93b44d4996e2a88fb61.tar.zst
nixpkgs-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/applications/misc/keepass')
-rw-r--r--pkgs/applications/misc/keepass/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/keepass/default.nix b/pkgs/applications/misc/keepass/default.nix
index 336bd5a7f64..f2846de37d3 100644
--- a/pkgs/applications/misc/keepass/default.nix
+++ b/pkgs/applications/misc/keepass/default.nix
@@ -84,7 +84,7 @@ with builtins; buildDotnetPackage rec {
   # after loading. It is brought into plugins bin/ directory using
   # buildEnv in the plugin derivation. Wrapper below makes sure it
   # is found and does not pollute output path.
-  binPaths = lib.concatStrings (lib.intersperse ":" (map (x: x + "/bin") plugins));
+  binPaths = lib.concatStringsSep ":" (map (x: x + "/bin") plugins);
 
   dynlibPath = lib.makeLibraryPath [ gtk2 ];