gnu: Add emacs-org-fragtog.

* gnu/packages/emacs-xyz.scm (emacs-org-fragtog): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
André Alexandre Gomes 2020-12-28 17:47:06 +01:00 committed by Nicolas Goaziou
parent 4aa4971b7f
commit 25c3ce9dd8
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -4178,6 +4178,30 @@ (define-public emacs-org-fancy-priorities
displays the priority part of a heading as your preferred string value.")
(license license:expat))))
(define-public emacs-org-fragtog
(package
(name "emacs-org-fragtog")
(version "0.3.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/io12/org-fragtog.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1rzi67lb3mxqg3x6d8zx6rxncg7lw14agqwbh7zvgc2iins59j0f"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-org" ,emacs-org)))
(home-page "https://github.com/io12/org-fragtog")
(synopsis "Toggle Org mode LaTeX fragments preview at cursor")
(description
"Org mode supports inline image previews of LaTeX fragments. This
package automates this, so fragment previews are disabled for editing when
your cursor steps onto them, and re-enabled when the cursor leaves.")
(license license:gpl3+)))
(define-public emacs-ob-erlang
(let ((revision "1")
(commit "f1a8c665b8f7d0ab32267a9961de8eed872e6333"))