gnu: Add emacs-seq.

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

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
kiasoc5 2022-06-04 14:19:51 -04:00 committed by Tobias Geerinckx-Rice
parent 3666e5e409
commit aa979449bc
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -31142,6 +31142,25 @@ (define-public emacs-global-tags
project.el and xref.el.")
(license license:gpl3+))))
(define-public emacs-seq
(package
(name "emacs-seq")
(version "2.23")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/seq-" version ".tar"))
(sha256
(base32 "1lbxnrzq88z8k9dyylg2636pg9vc8bzfprs1hxwp9ah0zkvsn52p"))))
(build-system emacs-build-system)
(home-page "https://elpa.gnu.org/packages/seq.html")
(synopsis "Sequence manipulation functions")
(description
"This Emacs package provides sequence manipulation functions that
complement basic functions provided by @file{subr.el}. All its functions
are prefixed with @code{seq-} and work on lists, strings, and vectors.")
(license license:gpl3+)))
(define-public emacs-setup
(package
(name "emacs-setup")