mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add emacs-async-await.
* gnu/packages/emacs-xyz.scm (emacs-async-await): New variable.
This commit is contained in:
parent
d53ee6bcd2
commit
996deb819f
1 changed files with 23 additions and 0 deletions
|
@ -25080,3 +25080,26 @@ (define-public emacs-promise
|
|||
@item It supports \"rejection-tracking\".
|
||||
@end itemize\n")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-async-await
|
||||
(package
|
||||
(name "emacs-async-await")
|
||||
(version "1.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/chuntaro/emacs-async-await")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0aav9qdswnw7ynqlzn0sm34as5fj2d85syxgg8zjabzp6646ay29"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("promise" ,emacs-promise)
|
||||
("iter2" ,emacs-iter2)))
|
||||
(home-page "https://github.com/chuntaro/emacs-async-await")
|
||||
(synopsis "Async/Await for Emacs")
|
||||
(description "This is a simple implementation of Async/Await inspired by
|
||||
the TypeScript implementation.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue