~ruther/guix-local

62a45cb647b9a54005557b6d503c4df58487e887 — Adriano Peluso 10 years ago 565bccc
gnu: Add emacs-seq.

* gnu/packages/emacs.scm (emacs-seq): New variable.

Signed-off-by: Alex Kost <alezost@gmail.com>
1 files changed, 20 insertions(+), 0 deletions(-)

M gnu/packages/emacs.scm
M gnu/packages/emacs.scm => gnu/packages/emacs.scm +20 -0
@@ 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+)))