summary refs log tree commit diff
path: root/pkgs/applications/audio/easytag
diff options
context:
space:
mode:
authorMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2014-12-22 11:17:38 +0000
committerMatthias C. M. Troffaes <matthias.troffaes@gmail.com>2014-12-22 11:17:38 +0000
commit6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e (patch)
tree58a31909aef1d7d850311cafae3defb59538d316 /pkgs/applications/audio/easytag
parent6221af50c48664693b7249b253b68083dbca2706 (diff)
downloadnixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.tar
nixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.tar.gz
nixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.tar.bz2
nixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.tar.lz
nixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.tar.xz
nixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.tar.zst
nixlib-6c9eb020ab42ae64e649171a3cfb9e5f4d70b86e.zip
easytag: Fix "Using the 'memory' GSettings backend" (see issue #4415).
Diffstat (limited to 'pkgs/applications/audio/easytag')
-rw-r--r--pkgs/applications/audio/easytag/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/audio/easytag/default.nix b/pkgs/applications/audio/easytag/default.nix
index d4927cc1a718..2d738f55c286 100644
--- a/pkgs/applications/audio/easytag/default.nix
+++ b/pkgs/applications/audio/easytag/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, pkgconfig, intltool, gtk3, glib, libid3tag, id3lib, taglib
 , libvorbis, libogg, flac, itstool, libxml2, gsettings_desktop_schemas
-, makeWrapper, gnome_icon_theme
+, makeWrapper, gnome_icon_theme, dconf
 }:
 
 stdenv.mkDerivation rec {
@@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
 
   preFixup = ''
     wrapProgram $out/bin/easytag \
-      --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share"
+      --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share" \
+      --prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules"
   '';
 
   NIX_LDFLAGS = "-lid3tag -lz";
@@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ makeWrapper ];
   buildInputs = [
     pkgconfig intltool gtk3 glib libid3tag id3lib taglib libvorbis libogg flac
-    itstool libxml2 gsettings_desktop_schemas gnome_icon_theme
+    itstool libxml2 gsettings_desktop_schemas gnome_icon_theme dconf
   ];
 
   meta = {