diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-21 06:02:55 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-21 15:12:55 +0300 |
| commit | d77dcb410ec700fe6dcfe01f07b4b38f8dd4257c (patch) | |
| tree | 9b7ef53b63dcafc969aeedc55c26ec11285346e5 | |
| parent | wigust: Add emacs-rainbow-blocks. (diff) | |
| download | guix-wigust-d77dcb410ec700fe6dcfe01f07b4b38f8dd4257c.tar.gz | |
wigust: Add emacs-srfi.
* wigust/packages/emacs.scm (emacs-srfi): New public variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 0ec0819..3fa5b5d 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -3488,6 +3488,26 @@ buffer with each of your todos.") throw a shell history.") (license license:gpl3+)))) +(define-public emacs-srfi + (package + (name "emacs-srfi") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://emacswiki.org/emacs/download/srfi.el")) + (file-name (string-append "emacs-srfi-" version ".el")) + (sha256 + (base32 + "05xh6jdgds79xchm01s2r04sv61gglf4v33f1968yw1zfi9g5jhi")))) + (build-system emacs-build-system) + (home-page "https://www.emacswiki.org/emacs/srfi.el") + (synopsis "View Scheme requests for implementation") + (description "This file provides a functionality to view SRFIs, +Scheme Requests for Implementation, using a simple @code{srfi} command. +To update the local SRFI cache, use @code{srfi-update-cache}.") + (license license:gpl2+))) + (define-public emacs-awk-it (package (name "emacs-awk-it") |
