aboutsummaryrefslogtreecommitdiff
path: root/km-packages
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-06-26 23:43:09 -0400
committerKyle Meyer <kyle@kyleam.com>2019-06-26 23:43:09 -0400
commit1d90febd5df1b2973f6bd5ccbdf7ea65a2094976 (patch)
tree5f05aacf1f929c109b7aa93265129020233d32d4 /km-packages
parente38e14de62f9d153b2f6f2ea535756f932469b2c (diff)
downloadguix-packages-1d90febd5df1b2973f6bd5ccbdf7ea65a2094976.tar.gz
emacs: Add boxquote
Diffstat (limited to 'km-packages')
-rw-r--r--km-packages/emacs.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/km-packages/emacs.scm b/km-packages/emacs.scm
index 6e106d7..f751e55 100644
--- a/km-packages/emacs.scm
+++ b/km-packages/emacs.scm
@@ -215,3 +215,25 @@ Stan files.")
(synopsis "Github Flavored Markdown Back-End for Org Export Engine ")
(description "TODO")
(license license:gpl3+)))
+
+(define-public emacs-boxquote
+ (package
+ (name "emacs-boxquote")
+ (version "2.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/davep/boxquote.el.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1f61k3sw9zvn6jq60ygi6p66blr52497fadimzcaspa79k9y1cfm"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/davep/boxquote.el")
+ (synopsis "Quote text with a semi-block")
+ (description "boxquote.el provides a set of functions for using a
+text quoting style that partially boxes in the left hand side of an
+area of text, such a marking style might be used to show externally
+included text or example code.")
+ (license license:gpl3+)))