summary refs log tree commit diff
path: root/pkgs/applications/audio/sound-juicer/default.nix
diff options
context:
space:
mode:
authorBrandon Dimcheff <bdimchef-git@wieldim.com>2015-03-24 10:30:00 -0400
committerBrandon Dimcheff <bdimchef-git@wieldim.com>2015-03-24 10:34:09 -0400
commit93228a08630c1e815334c854555636645d0f814a (patch)
treea8c38b644d48ca7e382925ad67ef0fb3410d2262 /pkgs/applications/audio/sound-juicer/default.nix
parentaea93670d12e90115b30ba97453c45df9e7ec390 (diff)
downloadnixpkgs-93228a08630c1e815334c854555636645d0f814a.tar
nixpkgs-93228a08630c1e815334c854555636645d0f814a.tar.gz
nixpkgs-93228a08630c1e815334c854555636645d0f814a.tar.bz2
nixpkgs-93228a08630c1e815334c854555636645d0f814a.tar.lz
nixpkgs-93228a08630c1e815334c854555636645d0f814a.tar.xz
nixpkgs-93228a08630c1e815334c854555636645d0f814a.tar.zst
nixpkgs-93228a08630c1e815334c854555636645d0f814a.zip
add dconf dependencies to sound-juicer and brasero
If you have services.gnome3.enabled = true, you shouldn't need this, but
if you don't, you'll need this dconf env var to be able to save settings
in these apps.
Diffstat (limited to 'pkgs/applications/audio/sound-juicer/default.nix')
-rw-r--r--pkgs/applications/audio/sound-juicer/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/audio/sound-juicer/default.nix b/pkgs/applications/audio/sound-juicer/default.nix
index 2dfbfe8cc3f..f7f5998846b 100644
--- a/pkgs/applications/audio/sound-juicer/default.nix
+++ b/pkgs/applications/audio/sound-juicer/default.nix
@@ -22,7 +22,7 @@ in stdenv.mkDerivation rec {
 
   buildInputs = [ pkgconfig gtk3 intltool itstool libxml2 brasero libcanberra_gtk3
                   gnome3.gsettings_desktop_schemas libmusicbrainz5 libdiscid isocodes
-                  makeWrapper
+                  makeWrapper gnome3.dconf
                   gst_all_1.gstreamer gst_all_1.gst-plugins-base
                   gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad ];
 
@@ -31,6 +31,7 @@ in stdenv.mkDerivation rec {
       wrapProgram "$f" \
         --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/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 GST_PLUGIN_PATH : "${GST_PLUGIN_PATH}"
     done
   '';