[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add emacs-aio.
From: |
guix-commits |
Subject: |
01/02: gnu: Add emacs-aio. |
Date: |
Fri, 18 Feb 2022 04:51:04 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 0035f333529f6a7da324da860796d09d3c4c82fd
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Fri Feb 18 10:49:52 2022 +0100
gnu: Add emacs-aio.
* gnu/packages/emacs-xyz.scm (emacs-aio): New variable.
---
gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 7adcfb2b4b..b02b35572a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2694,6 +2694,35 @@ expressions, editing the search results directly and
searching file names
rather than the contents of files.")
(license license:gpl3+)))
+(define-public emacs-aio
+ (package
+ (name "emacs-aio")
+ (version "1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/skeeto/emacs-aio")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1y7j10j74r3fy0rcb8g3cm9nlls34qb0pz9xkia7psp77syrlz54"))))
+ (build-system emacs-build-system)
+ (arguments
+ `(#:tests? #t
+ #:test-command '("emacs" "--batch"
+ "-l" "aio-test.el"
+ "-f" "ert-run-tests-batch-and-exit")))
+ (propagated-inputs
+ (list emacs-elfeed emacs-skewer-mode))
+ (home-page "https://github.com/skeeto/emacs-aio")
+ (synopsis "Async/Await for Emacs Lisp")
+ (description "@code{aio} is to Emacs Lisp as @code{asyncio} is to
+Python. This package builds upon Emacs generators to provide functions that
+pause while they wait on asynchronous events. They do not block any thread
+while paused.")
+ (license license:unlicense)))
+
(define-public emacs-async
(package
(name "emacs-async")