85b1ede2bf
- move frome $out to $out/share - fix quoting that prevented globbing - indent by spaces (as it is more common in nixpkgs; 4 spaces for shell) More work is still needed for some individual packages.
18 lines
622 B
Bash
18 lines
622 B
Bash
# Install gschemas, if any, in a package-specific directory
|
|
installFlagsArray+=("gsettingsschemadir=$out/share/gsettings-schemas/$name/glib-2.0/schemas/")
|
|
|
|
make_glib_find_gsettings_schemas() {
|
|
# For packages that need gschemas of other packages (e.g. empathy)
|
|
if [ -d "$1"/share/gsettings-schemas/*/glib-2.0/schemas ]; then
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "$1/share/gsettings-schemas/"*
|
|
fi
|
|
}
|
|
|
|
envHooks+=(make_glib_find_gsettings_schemas)
|
|
|
|
glibPreFixupPhase() {
|
|
addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/share/gsettings-schemas/$name"
|
|
}
|
|
|
|
preFixupPhases="$preFixupPhases glibPreFixupPhase"
|