[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-org-transclusion.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-org-transclusion. |
Date: |
Tue, 11 Jan 2022 04:39:46 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new fb668d7604 gnu: Add emacs-org-transclusion.
fb668d7604 is described below
commit fb668d7604689710f9780aa9a63fefbc7c952bfd
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Sat Jan 8 00:53:52 2022 +0000
gnu: Add emacs-org-transclusion.
* gnu/packages/emacs-xyz.scm (emacs-org-transclusion): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 771a03ee08..a46e8165b5 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -14553,6 +14553,30 @@ running tests easier.")
(description "This package provides a simple testing library for Emacs.")
(license license:gpl3+)))
+(define-public emacs-org-transclusion
+ (package
+ (name "emacs-org-transclusion")
+ (version "1.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nobiot/org-transclusion")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qvc8f4i44d8mgkzfi9yld664cmapkbmjv4bf0l8va417ck5sm92"))))
+ (build-system emacs-build-system)
+ (home-page "https://nobiot.github.io/org-transclusion/")
+ (synopsis "Enable transclusion with Org Mode")
+ (description "Org-transclusion lets you insert a copy of text content via
+a file link or ID link within an Org file. It lets you have the same content
+present in different buffers at the same time without copy-and-pasting it.
+Edit the source of the content, and you can refresh the transcluded copies to
+the up-to-date state. Org-transclusion keeps your files clear of the
+transcluded copies, leaving only the links to the original content.")
+ (license license:gpl3+)))
+
(define-public emacs-disable-mouse
(package
(name "emacs-disable-mouse")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-org-transclusion.,
guix-commits <=