summary refs log tree commit diff
path: root/pkgs/development/libraries/gdk-pixbuf/setup-hook.sh
blob: 06e820633b84f60c1309e82aba8099e520e818c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
findGdkPixbufLoaders() {

	if [ -n "$out" ] && [ -z "$IN_NIX_SHELL" ]; then

		# set pixbuf loaders.cache for this package

		local loadersDir="$out/lib/gdk-pixbuf-loaders-2.0/$name"
		mkdir -p "$loadersDir"
		
		if [ -f "$1/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" ]; then
			cat "$1/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" >> "$loadersDir/loaders.cache"
		fi
	
		if [ -f "$1/lib/gdk-pixbuf/loaders.cache" ]; then
			cat "$1/lib/gdk-pixbuf/loaders.cache" >> "$loadersDir/loaders.cache"
		fi
		
		# note, this is not a search path
		export GDK_PIXBUF_MODULE_FILE=$(readlink -e "$loadersDir/loaders.cache")

	fi

}

envHooks+=(findGdkPixbufLoaders)