about summary refs log tree commit diff
path: root/pkgs/development/libraries/glib/setup-hook.sh
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-03-10 20:30:27 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-04-02 19:06:41 +0200
commit1f6a15d7ded115ece48419cb1e642816b2145db5 (patch)
tree07e603f94e373d26851227995bdc4847db2c09f5 /pkgs/development/libraries/glib/setup-hook.sh
parent1046b4ccabdef4313520fb41be627232ffa44fc0 (diff)
Merge #1901: add preFixupPhases to stdenv; for gsettings
Without this stdenv change it seems difficult to fix some glib's gsettings issues,
as the folders in question may (not) be created in installPhase.
Diffstat (limited to 'pkgs/development/libraries/glib/setup-hook.sh')
-rw-r--r--pkgs/development/libraries/glib/setup-hook.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glib/setup-hook.sh b/pkgs/development/libraries/glib/setup-hook.sh
new file mode 100644
index 0000000000000..e5c0c372da00b
--- /dev/null
+++ b/pkgs/development/libraries/glib/setup-hook.sh
@@ -0,0 +1,17 @@
+# Install gschemas, if any, in a package-specific directory
+installFlagsArray+=("gsettingsschemadir=$out/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/gsettings-schemas/*/glib-2.0/schemas" ]; then
+		addToSearchPath GSETTINGS_SCHEMAS_PATH "$1/gsettings-schemas/"*
+	fi
+}
+
+envHooks+=(make_glib_find_gsettings_schemas)
+
+glibPreFixupPhase() {
+	addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/gsettings-schemas/$name"
+}
+
+preFixupPhases="$preFixupPhases glibPreFixupPhase"