guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/88: gnu: Add emacs-nnreddit.


From: Oleg Pykhalov
Subject: 01/88: gnu: Add emacs-nnreddit.
Date: Wed, 2 May 2018 13:21:03 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 59dc661fc63b44aa20b290cf67146fceef724554
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:48:25 2018 +0300

    gnu: Add emacs-nnreddit.
    
    * gnu/packages/emacs.scm (emacs-nnreddit): New public variable.
---
 gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index ae9b879..3585387 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8068,3 +8068,26 @@ another window to show results (compilation mode, 
starting info, and so on).
 A dedicated window won't be used for such a purpose.  For details, please read
 the source file.")
     (license license:gpl2+)))
+
+(define-public emacs-nnreddit
+  (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
+        (revision "1"))
+    (package
+      (name "emacs-nnreddit")
+      (version (string-append "0.0.1-" revision "."
+                              (string-take commit 7)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/paul-issartel/nnreddit.git";)
+                      (commit commit)))
+                (file-name (string-append name "-" version "-checkout"))
+                (sha256
+                 (base32
+                  "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/paul-issartel/nnreddit";)
+      (synopsis "Reddit backend for the Gnus newsreader")
+      (description "@url{https://www.reddit.com} backend for the Gnus
+newsreader.")
+      (license license:gpl3+))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]