me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-seq.

* gnu/packages/emacs.scm (emacs-seq): New public variable.
master
Oleg Pykhalov 2018-05-02 18:58:12 +03:00
parent 8d907999a9
commit b12fb29e4d
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 18 additions and 0 deletions

View File

@ -8569,3 +8569,21 @@ timestamps and date-time format strings library for Emacs.")
(description
"@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
(license license:gpl3+)))
(define-public emacs-seq
(package
(name "emacs-seq")
(version "2.20")
(source
(origin
(method url-fetch)
(uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
(sha256
(base32
"0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
(build-system emacs-build-system)
(home-page "http://elpa.gnu.org/packages/seq.html")
(synopsis "Sequence manipulation functions")
(description "Sequence-manipulation functions that complement basic
functions provided by @file{subr.el}.")
(license license:gpl3+)))