mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add emacs-md4rd.
* gnu/packages/emacs.scm (emacs-md4rd): New public variable.
This commit is contained in:
parent
0acfc481a4
commit
74b2f745a2
1 changed files with 29 additions and 0 deletions
|
@ -8450,3 +8450,32 @@ (define-public emacs-tree-mode
|
||||||
(description
|
(description
|
||||||
"This package provides an Emacs library to manage tree widgets.")
|
"This package provides an Emacs library to manage tree widgets.")
|
||||||
(license license:gpl3+))))
|
(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+))))
|
||||||
|
|
Loading…
Reference in a new issue