mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add emacs-org-auto-tangle.
* gnu/packages/emacs-xyz.scm (emacs-org-auto-tangle): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
a99015c878
commit
2d7548f0cf
1 changed files with 23 additions and 0 deletions
|
@ -113,6 +113,7 @@
|
|||
;;; Copyright © 2022 Peter Polidoro <peter@polidoro.io>
|
||||
;;; Copyright © 2022 Luis Felipe López Acevedo <luis.felipe.la@protonmail.com>
|
||||
;;; Copyright © 2022 Thomas Albers Raviola <thomas@thomaslabs.org>
|
||||
;;; Copyright © 2022 Haider Mirza <haider@haider.gq>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -18639,6 +18640,28 @@ (define-public emacs-bing-dict
|
|||
Chinese to English.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-org-auto-tangle
|
||||
(package
|
||||
(name "emacs-org-auto-tangle")
|
||||
(version "0.4.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/yilkalargaw/org-auto-tangle")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1zb7vcmhmjiqpbbhqrqci689rnpn10p985cs5jk9sgg66xsbrgs3"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-async))
|
||||
(home-page "https://github.com/yilkalargaw/org-auto-tangle")
|
||||
(synopsis "Automatically tangle code blocks on save")
|
||||
(description
|
||||
"@code{org-auto-tangle} allows you to automatically tangle code blocks
|
||||
whenever saving an @code{org-mode} file.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public emacs-org-auto-expand
|
||||
(let ((commit "4938d5f6460e2f8f051ba9ac000b291bfa43ef62")
|
||||
(revision "1"))
|
||||
|
|
Loading…
Reference in a new issue