about summary refs log tree commit diff
path: root/pkgs/applications/audio/audio-recorder
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-07-24 06:24:11 +0200
committerRobin Gloster <mail@glob.in>2017-08-05 12:21:00 +0200
commitc9d419a22bc42f79acfdf766b9d5908cf12ccdbc (patch)
tree63983b99ed334e9cc462f1fffbf79d97a94ff5e9 /pkgs/applications/audio/audio-recorder
parent0e192d5d4f33ab06ce6f815adabf93949001220e (diff)
gnome: Further fixes for `Using the 'memory' GSettings backend issue`
Diffstat (limited to 'pkgs/applications/audio/audio-recorder')
-rw-r--r--pkgs/applications/audio/audio-recorder/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/audio-recorder/default.nix b/pkgs/applications/audio/audio-recorder/default.nix
index e6addd6c4fdf2..283d4c7d493fd 100644
--- a/pkgs/applications/audio/audio-recorder/default.nix
+++ b/pkgs/applications/audio/audio-recorder/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   patches = [ ./icon-names.diff ];
 
   buildInputs = with gst_all_1; [
-    glib dbus gtk3 librsvg libdbusmenu-gtk3 libappindicator-gtk3 gnome3.dconf
+    glib dbus gtk3 librsvg libdbusmenu-gtk3 libappindicator-gtk3 (stdenv.lib.getLib gnome3.dconf)
     gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav
   ] ++ optional pulseaudioSupport libpulseaudio;
 
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
   preFixup = ''
     gappsWrapperArgs+=('--prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"'
       '--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"'
-      '--prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules"')
+      '--prefix GIO_EXTRA_MODULES : "${stdenv.lib.getLib gnome3.dconf}/lib/gio/modules"')
   '';
 
   meta = with stdenv.lib; {