~ruther/guix-local

ae77366df7edaad3160800ac4337f7fb3bb64088 — Cayetano Santos 4 months ago 497b813
gnu: Add emacs-org-supertag.

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

Change-Id: Ib84cf6ccfceeda8891fa3049f61341385d69fc5d
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/emacs-xyz.scm
M gnu/packages/emacs-xyz.scm => gnu/packages/emacs-xyz.scm +27 -0
@@ 14076,6 14076,33 @@ It also prettifies Org plain list bullets by:
Features degrade gracefully when viewed from terminal.")
    (license license:gpl3+)))

(define-public emacs-org-supertag
  ;; No tags or releases.
  (let ((commit "2b17051c3d7e2e35db5b5fa66df0b6e67fa8d011")
        (revision "0"))
    (package
      (name "emacs-org-supertag")
      (version (git-version "5.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
                (url "https://github.com/yibie/org-supertag/")
                (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "159aqyah89nw0ar2y68rs5s4ja5hhy4j5yx3slhagzdklcpimpq8"))))
      (build-system emacs-build-system)
      (arguments (list #:tests? #f))    ;no tests
      (propagated-inputs
       (list emacs-ht emacs-gptel))
      (home-page "https://github.com/yibie/org-supertag/")
      (synopsis "Note taking application on top of Org mode")
      (description
       "This package implements a knowledge manage engine as an extension to
Org mode, upgrading its tagging system.")
      (license license:gpl3+))))

(define-public emacs-org-pandoc-import
  (let ((commit "db308f1a05be26ce5b287633637ce554599b1377")
        (revision "0"))