mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
10 lines
258 B
Bash
10 lines
258 B
Bash
addGstreamer1LibPath () {
|
|
if test -d "$1/lib/gstreamer-1.0"
|
|
then
|
|
export GST_PLUGIN_SYSTEM_PATH_1_0="${GST_PLUGIN_SYSTEM_PATH_1_0-}${GST_PLUGIN_SYSTEM_PATH_1_0:+:}$1/lib/gstreamer-1.0"
|
|
fi
|
|
}
|
|
|
|
addEnvHooks "$hostOffset" addGstreamer1LibPath
|
|
|