mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add emacs-queue.
* gnu/packages/emacs.scm (emacs-queue): New variable. Signed-off-by: Alex Kost <alezost@gmail.com>
This commit is contained in:
parent
4509ec72a4
commit
ad6c4bc48a
1 changed files with 22 additions and 0 deletions
|
@ -1707,3 +1707,25 @@ (define-public emacs-epl
|
||||||
The purpose of this library is to wrap all the quirks and hassle of
|
The purpose of this library is to wrap all the quirks and hassle of
|
||||||
@code{package.el} into a sane API.")
|
@code{package.el} into a sane API.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-queue
|
||||||
|
(package
|
||||||
|
(name "emacs-queue")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source (origin
|
||||||
|
(method uncompressed-file-fetch)
|
||||||
|
(uri (string-append "http://elpa.gnu.org/packages/queue-"
|
||||||
|
version ".el"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jw24fxqnf9qcaf2nh09cnds1kqfk7hal35dw83x1ari95say391"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
|
||||||
|
(synopsis "Queue data structure for Emacs")
|
||||||
|
(description
|
||||||
|
"This Emacs library provides queue data structure. These queues can be
|
||||||
|
used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
|
||||||
|
stack, i.e. elements can be added to the front or back of the queue, and can
|
||||||
|
be removed from the front. This type of data structure is sometimes called an
|
||||||
|
\"output-restricted deque\".")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue