2b9e883591
svn path=/nixpkgs/trunk/; revision=13253
9 lines
223 B
Bash
9 lines
223 B
Bash
addGstreamerLibPath () {
|
|
if test -d "$1/lib/gstreamer-0.10"
|
|
then
|
|
export GST_PLUGIN_PATH="${GST_PLUGIN_PATH}${GST_PLUGIN_PATH:+:}$1/lib/gstreamer-0.10"
|
|
fi
|
|
}
|
|
|
|
envHooks=(${envHooks[@]} addGstreamerLibPath)
|