diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-11-04 20:53:38 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2017-11-04 20:53:38 +0300 |
| commit | f1307f3030bd9f372ef736988ae23ca1f4bb8e5f (patch) | |
| tree | 729c30ca66471b4967e8a7dc2120c0d64c149207 | |
| parent | wigust: Add emacs-m-buffer-el. (diff) | |
| download | guix-wigust-f1307f3030bd9f372ef736988ae23ca1f4bb8e5f.tar.gz | |
wigust: Add emacs-load-relative.
* wigust/packages/emacs.scm (emacs-load-relative): New variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index be454f6..0b56084 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -1753,6 +1753,32 @@ to perform regression test for packages that provide font-lock rules.") functions for operating over the contents of Emacs buffers.") (license license:gpl3+))) +(define-public emacs-load-relative + (let ((commit "738896e3da491b35399178ed2c6bc92cc728d119") + (revision "1")) + (package + (name "emacs-load-relative") + (version (string-append "0.0.1" "-" revision "." + (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rocky/emacs-load-relative") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1rpy5mfncncl6gqgg53d3g25g1700g4b9bivd4c0cfcv5dbxhp73")))) + (build-system emacs-build-system) + (home-page "https://github.com/rocky/emacs-load-relative") + (synopsis "Relative loads for Emacs Lisp files") + (description "@code{load-relative} allows to write small Emacs +functions or modules in a larger multi-file Emacs package and +facilitate running from the source tree without having to install the +code or fiddle with evil @code{load-path}.") + (license license:gpl3+)))) + (define-public emacs-beginend (package (name "emacs-beginend") |
