summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2016-08-26 11:34:40 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2016-08-26 13:36:58 +0200
commit94b245138d9deef92faf1990631d455752796eb7 (patch)
tree790d35d45c81bc78a0671b6d8faf8b6631abb121 /pkgs
parentc674807bce83c796c09dacb6669ac5fde2823e9e (diff)
downloadnixlib-94b245138d9deef92faf1990631d455752796eb7.tar
nixlib-94b245138d9deef92faf1990631d455752796eb7.tar.gz
nixlib-94b245138d9deef92faf1990631d455752796eb7.tar.bz2
nixlib-94b245138d9deef92faf1990631d455752796eb7.tar.lz
nixlib-94b245138d9deef92faf1990631d455752796eb7.tar.xz
nixlib-94b245138d9deef92faf1990631d455752796eb7.tar.zst
nixlib-94b245138d9deef92faf1990631d455752796eb7.zip
gnumeric: fix on darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/office/gnumeric/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/office/gnumeric/default.nix b/pkgs/applications/office/gnumeric/default.nix
index ae7ee63519fb..90c53fc1b865 100644
--- a/pkgs/applications/office/gnumeric/default.nix
+++ b/pkgs/applications/office/gnumeric/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
     for f in "$out"/bin/gnumeric-*; do
       wrapProgram $f \
         --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \
-        --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules"
+        ${stdenv.lib.optionalString (!stdenv.isDarwin) "--prefix GIO_EXTRA_MODULES : '${gnome3.dconf}/lib/gio/modules'"}
     done
   '';