gnu: Add emacs-rocket-chat.

* gnu/packages/emacs-xyz.scm (emacs-rocket-chat): New variable.
This commit is contained in:
Pierre Neidhardt 2020-10-20 17:02:52 +02:00
parent 996deb819f
commit 99da89cc55
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -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))))