mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add emacs-rocket-chat.
* gnu/packages/emacs-xyz.scm (emacs-rocket-chat): New variable.
This commit is contained in:
parent
996deb819f
commit
99da89cc55
1 changed files with 25 additions and 0 deletions
|
@ -25103,3 +25103,28 @@ (define-public emacs-async-await
|
|||
(description "This is a simple implementation of Async/Await inspired by
|
||||
the TypeScript implementation.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-rocket-chat
|
||||
;; No release.
|
||||
(let ((commit "96fe27a8678de5ae4061f635108a7192eee13f98"))
|
||||
(package
|
||||
(name "emacs-rocket-chat")
|
||||
(version (git-version "0.0.0" "1" commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/4hiziri/rocket-chat")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "02a4j0yy7330kfr3rd3k2agdj01ii6989nki598anbamq6xvj5ql"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("async-await" ,emacs-async-await)
|
||||
("request" ,emacs-request)))
|
||||
(home-page "https://github.com/4hiziri/rocket-chat")
|
||||
(synopsis "Emacs Rocket.chat client")
|
||||
(description "This package provides an Emacs client for the Rocket.chat
|
||||
service.")
|
||||
(license license:expat))))
|
||||
|
|
Loading…
Reference in a new issue