diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 18:57:06 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 20:17:09 +0300 |
commit | 74b2f745a264c3908bb40a1b7b163003c3685062 (patch) | |
tree | 5524bcb0a3a6a0d7042482a26b47c0bc2e29e199 | |
parent | 0acfc481a4544f738c81ddbf746afa8a7b43f124 (diff) | |
download | guix-74b2f745a264c3908bb40a1b7b163003c3685062.tar.gz |
gnu: Add emacs-md4rd.
* gnu/packages/emacs.scm (emacs-md4rd): New public variable.
-rw-r--r-- | gnu/packages/emacs.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 6c44bdfef2..65309e654c 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -8450,3 +8450,32 @@ navigate and display hierarchy structures.") (description "This package provides an Emacs library to manage tree widgets.") (license license:gpl3+)))) + +(define-public emacs-md4rd + (let ((commit "be0fc4951b2d1f5194ffa1fcaac706dbac560500") + (revision "1")) + (package + (name "emacs-md4rd") + (version (string-append "0.0.1" "-" revision "." + (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ahungry/md4rd.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "1i93shx5x192gd7cl2r6gvcvhhwyi1k08abi5w3izv1hn3pmksgq")))) + (propagated-inputs + `(("emacs-hierarchy" ,emacs-hierarchy) + ("emacs-request" ,emacs-request) + ("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s) + ("emacs-tree-mode" ,emacs-tree-mode))) + (build-system emacs-build-system) + (home-page "https://github.com/ahungry/md4rd") + (synopsis "Emacs Mode for Reddit") + (description + "This package allows to read Reddit from within Emacs interactively.") + (license license:gpl3+)))) |