summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-10-12 11:04:28 +0200
committerCayetano Santos <csantosb@inventati.org>2026-01-05 20:05:17 +0100
commitae77366df7edaad3160800ac4337f7fb3bb64088 (patch)
treec1b627891b8cdaba0aeb05819737b9f0ed6bdd3c /gnu
parent497b81350a45e4c373b70a23cf716906569b9790 (diff)
gnu: Add emacs-org-supertag.
* gnu/packages/emacs-xyz.scm (emacs-org-supertag): New variable. Change-Id: Ib84cf6ccfceeda8891fa3049f61341385d69fc5d
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bfa33913f0d..ad338945386 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -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"))