mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add emacs-evil-markdown.
* gnu/packages/emacs-xyz.scm (emacs-evil-markdown): New variable.
This commit is contained in:
parent
4fde5efefd
commit
6862c03808
1 changed files with 28 additions and 2 deletions
|
@ -6145,6 +6145,32 @@ (define-public emacs-markdown-mode
|
||||||
in Emacs.")
|
in Emacs.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-evil-markdown
|
||||||
|
(let ((commit "46cd81b37991c4325fc24015a610f832b0ff995d")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "emacs-evil-markdown")
|
||||||
|
(version (git-version "0.0.2" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Somelauw/evil-markdown.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0mad8sp5y9vyk28595qygspnyh8bfmb1fbxjlw70qwc1kdn822n4"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("emacs-markdown-mode" ,emacs-markdown-mode)
|
||||||
|
("emacs-evil" ,emacs-evil)))
|
||||||
|
(home-page "http://jblevins.org/projects/evil-markdown/")
|
||||||
|
(synopsis "Evil keybindings for @code{markdown-mode}")
|
||||||
|
(description
|
||||||
|
"This package provides custom text objects and bindings for
|
||||||
|
@code{markdown-mode}.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-edit-indirect
|
(define-public emacs-edit-indirect
|
||||||
(package
|
(package
|
||||||
(name "emacs-edit-indirect")
|
(name "emacs-edit-indirect")
|
||||||
|
@ -6153,8 +6179,8 @@ (define-public emacs-edit-indirect
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Fanael/edit-indirect")
|
(url "https://github.com/Fanael/edit-indirect")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
|
Loading…
Reference in a new issue