1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-29 21:41:15 +02:00

gnu: Add emacs-load-dir.

* gnu/packages/emacs-xyz.scm (emacs-load-dir): New variable.

Change-Id: If923f98480fc119220a45662ff022416830bb980
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Merges: guix/guix#4691
This commit is contained in:
Anderson Torres
2025-12-05 23:31:24 -03:00
committed by Liliana Marie Prikler
parent 8023f009f2
commit a1ab5b87f1

View File

@@ -15679,6 +15679,35 @@ alleviates the need for context macros, enclosing specifications or required
test tags. It supports both interactive and non-interactive use.")
(license license:gpl3+))))
(define-public emacs-load-dir
;; This package is kept inside ELPA; there is no version-specific
;; tag. Version string was taken from source code.
(let ((commit "22bcac73d8808a680fd9b261cd89937d8e5c6a3c")
(revision "0"))
(package
(name "emacs-load-dir")
(version (git-version "0.0.5" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.savannah.gnu.org/git/emacs/elpa.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"011m9vnjrxmnpnvf7zjfg3pzkkfsfwc4xf3h5z37f2d4x7ghlw10"))))
(build-system emacs-build-system)
(arguments
(list #:tests? #f)) ; No tests.
(synopsis "Load all Emacs Lisp files in a given directory")
(description
"This package provides a way to load all Emacs Lisp snippets (they
don't have to be libraries) in a directory on startup or when Emacs is already
running. It won't reload snippets unless the user requests it.")
(home-page "https://elpa.gnu.org/packages/load-dir.html")
(license license:gpl3+))))
(define-public emacs-load-relative
(package
(name "emacs-load-relative")