diff options
author | humanitiesNerd <catonano@gmail.com> | 2016-05-29 13:44:00 +0200 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-05-30 13:11:39 +0300 |
commit | 62a45cb647b9a54005557b6d503c4df58487e887 (patch) | |
tree | 4552fcd9ffec5f29b4f55b890318168092bb3a56 | |
parent | 565bccc569e0f74807e0474d417f2f78362c9237 (diff) |
gnu: Add emacs-seq.
* gnu/packages/emacs.scm (emacs-seq): New variable.
Signed-off-by: Alex Kost <alezost@gmail.com>
-rw-r--r-- | gnu/packages/emacs.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index a49afcf2bf..8e66e49e76 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1769,3 +1769,23 @@ be removed from the front. This type of data structure is sometimes called an "This Emacs package adds spinners and progress-bars to the mode-line for ongoing operations.") (license license:gpl3+))) + +(define-public emacs-seq + (package + (name "emacs-seq") + (version "2.15") + (source (origin + (method url-fetch) + (uri (string-append "http://elpa.gnu.org/packages/seq-" + version ".tar")) + (sha256 + (base32 + "09wi1765bmn7i8fg6ajjfaxgs4ipc42d58zx2fdqpidrdg9c7q73")))) + (build-system emacs-build-system) + (home-page "http://elpa.gnu.org/packages/seq.html") + (synopsis "Sequence manipulation functions for Emacs") + (description + "This Emacs library provides sequence-manipulation functions that +complement basic functions provided by @code{subr.el}. All provided functions +work on lists, strings and vectors.") + (license license:gpl3+))) |