diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-07-14 04:25:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-18 15:36:58 +0200 |
commit | 6bfb0d507771daceeacca9169d0b19ab4d8942f7 (patch) | |
tree | e378eed2072bf50d6cd2f9fd28710608666cd4c3 /gnu | |
parent | 0f7b8a7f09bd2e6a4cd780a9698c3c78e57499d3 (diff) | |
download | patches-6bfb0d507771daceeacca9169d0b19ab4d8942f7.tar patches-6bfb0d507771daceeacca9169d0b19ab4d8942f7.tar.gz |
gnu: Add emacs-github-review.
* gnu/packages/emacs-xyz.scm (emacs-github-review): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7ea4413e66..f3bfa9f782 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -13689,6 +13689,34 @@ server with @code{M-x pinentry-start}.") viewing files with long lines.") (license license:gpl3+)))) +(define-public emacs-github-review + (let ((commit "9c3ffe30fba5d02e9951e76d1a5be2ed046663da") + (version "0.1") + (revision "1")) + (package + (name "emacs-github-review") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/charignon/github-review") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "078rv6f2p3wrznhgvmkhd071bwy72007f5l2m2a0r1k2i3vbfaja")))) + (build-system emacs-build-system) + (inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s) + ("emacs-ghub" ,emacs-ghub))) + (home-page "https://github.com/charignon/github-review") + (synopsis "Review GitHub pull requests within Emacs") + (description "This package provides commands to pull in, comment on, and +accept and reject GitHub pull requests.") + (license license:gpl3+)))) + (define-public emacs-org-brain (package (name "emacs-org-brain") |