summary refs log tree commit diff
path: root/pkgs/applications/graphics/shotwell
diff options
context:
space:
mode:
authorMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2014-12-22 09:28:28 +0000
committerMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2014-12-22 09:36:20 +0000
commit1aacda549056eef234d14874cf7ffe0e4a8a2156 (patch)
tree53c8e8a165918face06c0bd2ff5fd03721510dc9 /pkgs/applications/graphics/shotwell
parent924b55c6a77bd2218c2845039b19070560bf8f77 (diff)
downloadnixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.tar
nixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.tar.gz
nixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.tar.bz2
nixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.tar.lz
nixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.tar.xz
nixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.tar.zst
nixpkgs-1aacda549056eef234d14874cf7ffe0e4a8a2156.zip
shotwell: Fix "Using the 'memory' GSettings backend" (fix suggested by lethalman, see issue #5433).
Diffstat (limited to 'pkgs/applications/graphics/shotwell')
-rw-r--r--pkgs/applications/graphics/shotwell/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix
index 3bf40560d0f..a71d326242a 100644
--- a/pkgs/applications/graphics/shotwell/default.nix
+++ b/pkgs/applications/graphics/shotwell/default.nix
@@ -42,7 +42,8 @@ in stdenv.mkDerivation rec {
   preFixup = ''
     wrapProgram "$out/bin/shotwell" \
      --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
-     --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:$out/share:$GSETTINGS_SCHEMAS_PATH"
+     --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \
+     --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules"
     rm $out/share/icons/hicolor/icon-theme.cache
   '';