Revert "glib hooks: move gsettings-schemas if on wrong place"

This reverts commit 5df1aadd68a157997c5ff419a8f4e1db23e5a5ae.

It introduced some problems.

+3 -10
+3 -10
pkgs/development/libraries/glib/setup-hook.sh
··· 10 10 11 11 envHooks+=(make_glib_find_gsettings_schemas) 12 12 13 - glibFixupPhase() { 14 - # Move gschemas in case the install flag didn't help 15 - if [ -d "$prefix/share/glib-2.0/schemas" ]; then 16 - mkdir -p "$prefix/share/gsettings-schemas/$name/glib-2.0" 17 - mv "$prefix/share/glib-2.0/schemas" "$prefix/share/gsettings-schemas/$name/glib-2.0/" 18 - fi 19 - 20 - addToSearchPath GSETTINGS_SCHEMAS_PATH "$prefix/share/gsettings-schemas/$name" 13 + glibPreFixupPhase() { 14 + addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/share/gsettings-schemas/$name" 21 15 } 22 16 23 - fixupOutputHooks+=(glibFixupPhase) 24 - 17 + preFixupPhases="$preFixupPhases glibPreFixupPhase"