nixpkgs/pkgs/development/interpreters/guile/setup-hook.sh
Ludovic Courtès 144e3b4e9d Guile: Use `share/guile/site' as the standard Guile module location.
svn path=/nixpkgs/trunk/; revision=11507
2008-04-09 08:15:30 +00:00

9 lines
211 B
Bash

addGuileLibPath () {
if test -d "$1/share/guile/site"
then
export GUILE_LOAD_PATH="${GUILE_LOAD_PATH}${GUILE_LOAD_PATH:+:}$1/share/guile/site"
fi
}
envHooks=(${envHooks[@]} addGuileLibPath)