about summary refs log tree commit diff
path: root/pkgs/build-support/emacs/setup-hook.sh
blob: 83e995631b3e6536973c77ed1ac429346295ea1b (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
26
27
28
29
30
31
32
33
addToEmacsLoadPath() {
  local lispDir="$1"
  if [[ -d $lispDir && ${EMACSLOADPATH-} != *"$lispDir":* ]] ; then
    # It turns out, that the trailing : is actually required
    # see https://www.gnu.org/software/emacs/manual/html_node/elisp/Library-Search.html
    export EMACSLOADPATH="$lispDir:${EMACSLOADPATH-}"
  fi
}

addEmacsVars () {
  addToEmacsLoadPath "$1/share/emacs/site-lisp"

  # Add sub paths to the Emacs load path if it is a directory
  # containing .el files. This is necessary to build some packages,
  # e.g., using trivialBuild.
  for lispDir in \
      "$1/share/emacs/site-lisp/"* \
      "$1/share/emacs/site-lisp/elpa/"*; do
    if [[ -d $lispDir && "$(echo "$lispDir"/*.el)" ]] ; then
      addToEmacsLoadPath "$lispDir"
    fi
  done
}

if [[ ! -v emacsHookDone ]]; then
  emacsHookDone=1

  # If this is for a wrapper derivation, emacs and the dependencies are all
  # run-time dependencies. If this is for precompiling packages into bytecode,
  # emacs is a compile-time dependency of the package.
  addEnvHooks "$hostOffset" addEmacsVars
  addEnvHooks "$targetOffset" addEmacsVars
fi