[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: Add emacs-org-tanglesync.
From: |
guix-commits |
Subject: |
02/04: gnu: Add emacs-org-tanglesync. |
Date: |
Tue, 3 Sep 2019 16:36:34 -0400 (EDT) |
wigust pushed a commit to branch master
in repository guix.
commit c9f8d6a953f07e593157bda2b04cbc3c7409bfe4
Author: Brian Leung <address@hidden>
Date: Tue Sep 3 02:45:49 2019 +0200
gnu: Add emacs-org-tanglesync.
* gnu/packages/emacs-xyz.scm (emacs-org-tanglesync): New variable.
Signed-off-by: Oleg Pykhalov <address@hidden>
---
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 29d9fe4..997d519 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -4342,6 +4342,30 @@ overview of tasks in a subtree.")
organizer.")
(license license:gpl3+)))
+(define-public emacs-org-tanglesync
+ (let ((commit "ab76a3eaaed263677d2e029d43f6c4de8fc21418")
+ (revision "1"))
+ (package
+ (name "emacs-org-tanglesync")
+ (version (git-version "0.6" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mtekman/org-tanglesync.el.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14ify3yirq2qmi9isk8kcbwx8pbclv1fyg49kraz4srhgf2fssgf"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-org" ,emacs-org)))
+ (home-page "https://github.com/mtekman/org-tanglesync.el")
+ (synopsis "Sync Org source blocks with tangled external files")
+ (description "This package automatically pulls changes from source code
+to their corresponding tangled blocks.")
+ (license license:gpl3+))))
+
(define-public emacs-company-flow
(let ((commit "76ef585c70d2a3206c2eadf24ba61e59124c3a16")
(revision "1"))