1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-12 18:10:47 +02:00

gnu: Add emacs-denote-sequence.

* gnu/packages/emacs-xyz.scm (emacs-denote-sequence): New variable.

Change-Id: I50f0d5642775b2200873e3d0c274e0237e515846
This commit is contained in:
jgart 2025-04-23 14:19:45 -05:00
parent 74e53845e1
commit 6cf0f3cbb6
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -19885,6 +19885,27 @@ view your Denote directory.")
Denote with Org mode.") Denote with Org mode.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-denote-sequence
(package
(name "emacs-denote-sequence")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/denote-sequence-"
version ".tar"))
(sha256
(base32 "06s2k555in897rpr2iabzv29dr79lm6fkpjp3yssidr9irxymf0h"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-denote))
(home-page "https://github.com/protesilaos/denote-sequence")
(synopsis "Sequence notes or Folgezettel with Denote")
(description "This package provides an optional extension to denote for
naming files with a sequencing scheme. The idea is to establish hiearchical
relationships between files, such that the contents of one logically follow or
complement those of another.")
(license license:gpl3+)))
(define-public emacs-denote-explore (define-public emacs-denote-explore
(package (package
(name "emacs-denote-explore") (name "emacs-denote-explore")