summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/site-start.el
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2018-01-04 11:48:25 +0100
committerMoritz Ulrich <moritz@tarn-vedra.de>2018-01-05 10:50:18 +0100
commit7cfdb2b1b56f25c166feee2780d7b1b59eea8923 (patch)
tree705ac143a491806d57c9310528d010da9aa64655 /pkgs/applications/editors/emacs/site-start.el
parent1543c8cc01a4501ec9286e03ccf92965deff611e (diff)
downloadnixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.tar
nixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.tar.gz
nixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.tar.bz2
nixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.tar.lz
nixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.tar.xz
nixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.tar.zst
nixpkgs-7cfdb2b1b56f25c166feee2780d7b1b59eea8923.zip
emacs: Search subdirectories of `site-lisp` in `NIX_PROFILES`
This adds subdirectories of `share/emacs/site-lisp/` in every path in
`NIX_PROFILES` to `load-path` to allow loading of more complex
libraries like `mu4e`.

Fixes #33412
Diffstat (limited to 'pkgs/applications/editors/emacs/site-start.el')
-rw-r--r--pkgs/applications/editors/emacs/site-start.el21
1 files changed, 16 insertions, 5 deletions
diff --git a/pkgs/applications/editors/emacs/site-start.el b/pkgs/applications/editors/emacs/site-start.el
index 004b917ebb6..cc1ab1d0e30 100644
--- a/pkgs/applications/editors/emacs/site-start.el
+++ b/pkgs/applications/editors/emacs/site-start.el
@@ -5,11 +5,22 @@ least specific (the system profile)"
   (reverse (split-string (or (getenv "NIX_PROFILES") ""))))
 
 ;;; Extend `load-path' to search for elisp files in subdirectories of
-;;; all folders in `NIX_PROFILES'
-(setq load-path
-      (append (mapcar (lambda (x) (concat x "/share/emacs/site-lisp/"))
-                      (nix--profile-paths))
-              load-path))
+;;; all folders in `NIX_PROFILES'. Also search for one level of
+;;; subdirectories in these directories to handle multi-file libraries
+;;; like `mu4e'.'
+(require 'seq)
+(let* ((subdirectory-sites (lambda (site-lisp)
+                             (when (file-exists-p site-lisp)
+                               (seq-filter (lambda (f) (file-directory-p (file-truename f)))
+                                           ;; Returns all files in `site-lisp', excluding `.' and `..'
+                                           (directory-files site-lisp 'full "^\\([^.]\\|\\.[^.]\\|\\.\\..\\)")))))
+       (paths (apply #'append
+                     (mapcar (lambda (profile-dir)
+                               (let ((site-lisp (concat profile-dir "/share/emacs/site-lisp/")))
+                                 (cons site-lisp (funcall subdirectory-sites site-lisp))))
+                             (nix--profile-paths)))))
+  (setq load-path (append paths load-path)))
+
 
 ;;; Make `woman' find the man pages
 (eval-after-load 'woman