mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: Add emacs-polymode-markdown.
* gnu/packages/emacs-xyz.scm (emacs-polymode-markdown): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
53b2bada05
commit
e2faabfa7d
1 changed files with 25 additions and 0 deletions
|
@ -13512,6 +13512,31 @@ (define-public emacs-polymode-ansible
|
|||
"Edit YAML files for Ansible containing embedded Jinja2 templating.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-polymode-markdown
|
||||
(package
|
||||
(name "emacs-polymode-markdown")
|
||||
(version "0.2.2")
|
||||
(home-page "https://github.com/polymode/poly-markdown")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1q4qq0ql08hxkdrd2aal03560k612my7bvnfpfij3g432hn0p7v6"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-markdown-mode" ,emacs-markdown-mode)
|
||||
("emacs-polymode" ,emacs-polymode)))
|
||||
(properties '((upstream-name . "poly-markdown")))
|
||||
(synopsis "Polymode for Markdown mode")
|
||||
(description
|
||||
"This package allows editing source code blocks embedded in Markdown
|
||||
files using the major mode corresponding to each block.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-powershell
|
||||
;; Tagged branch 0.1 is outdated (2015).
|
||||
(let ((revision "0")
|
||||
|
|
Loading…
Reference in a new issue