This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ae77366df7 gnu: Add emacs-org-supertag.
ae77366df7 is described below

commit ae77366df7edaad3160800ac4337f7fb3bb64088
Author: Cayetano Santos <[email protected]>
AuthorDate: Sun Oct 12 11:04:28 2025 +0200

    gnu: Add emacs-org-supertag.
    
    * gnu/packages/emacs-xyz.scm (emacs-org-supertag): New variable.
    
    Change-Id: Ib84cf6ccfceeda8891fa3049f61341385d69fc5d
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bfa33913f0..ad33894538 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"))

Reply via email to