about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-08-09 23:35:09 +0200
committerRobin Gloster <mail@glob.in>2017-08-09 23:35:50 +0200
commit5e89bcae00a52c5bf8388c2b737455d3980e83d7 (patch)
tree5cd945be3f56375fb760a8204f2f16b114306b23 /pkgs
parent46a25ea7ea155193302e749e5d72513bee0a296b (diff)
downloadnixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.tar
nixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.tar.gz
nixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.tar.bz2
nixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.tar.lz
nixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.tar.xz
nixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.tar.zst
nixlib-5e89bcae00a52c5bf8388c2b737455d3980e83d7.zip
evolution_data_server: wrap all and only executables
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/gnome-3/3.22/core/evolution-data-server/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/desktops/gnome-3/3.22/core/evolution-data-server/default.nix b/pkgs/desktops/gnome-3/3.22/core/evolution-data-server/default.nix
index a8c3f724b850..c2038ecdce60 100644
--- a/pkgs/desktops/gnome-3/3.22/core/evolution-data-server/default.nix
+++ b/pkgs/desktops/gnome-3/3.22/core/evolution-data-server/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   preFixup = ''
-    for f in "$out/libexec/"*; do
+    for f in $(find $out/libexec/ -type f -executable); do
       wrapProgram "$f" \
         --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
         --prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib dconf}/lib/gio/modules"