mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
miro: Fix desktop schema GSettings path.
The real path of the schemas is: $out/share/gsettings-schemas/gsettings-desktop-schemas-3.10.1/glib-2.0/schemas While the previous approach was to load schemas from: $out/share/glib-2.0/schemas So, we're now relying on the setup hook of glib to find the right schema path. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
6fec10dda3
commit
396da20739
@ -57,12 +57,12 @@ buildPythonPackage rec {
|
||||
wrapProgram "$out/bin/miro" \
|
||||
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \
|
||||
--prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \
|
||||
--prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/share"
|
||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share"
|
||||
'';
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig pyrex096 ffmpeg boost glib pygobject gtk2 webkitgtk2 libsoup
|
||||
pygtk taglib
|
||||
pygtk taglib gsettings_desktop_schemas
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
Loading…
Reference in New Issue
Block a user