guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#30194] [PATCH 1/6] gnu: Add emacs-seq.


From: Ricardo Wurmus
Subject: [bug#30194] [PATCH 1/6] gnu: Add emacs-seq.
Date: Sun, 21 Jan 2018 18:25:34 +0100

* gnu/packages/emacs.scm (emacs-seq): New variable.
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 0c3d5139a..cbe1ac6f7 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -6465,6 +6465,27 @@ proficiency is an advantage, since you can transform 
your numeric range with
 an elisp expression.")
     (license license:gpl3+)))
 
+(define-public emacs-seq
+  (package
+    (name "emacs-seq")
+    (version "2.20")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://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 "This Emacs package provides sequence-manipulation functions
+that complement basic functions provided by @code{subr.el}.  All functions are
+prefixed with @code{seq-}.  All provided functions work on lists, strings and
+vectors.")
+    (license license:gpl3+)))
+
 (define-public emacs-bash-completion
   (package
    (name "emacs-bash-completion")
-- 
2.15.0







reply via email to

[Prev in Thread] Current Thread [Next in Thread]