From 6cf0f3cbb649b8be21dcc6337ef394902c4bd56c Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 23 Apr 2025 14:19:45 -0500 Subject: [PATCH] gnu: Add emacs-denote-sequence. * gnu/packages/emacs-xyz.scm (emacs-denote-sequence): New variable. Change-Id: I50f0d5642775b2200873e3d0c274e0237e515846 --- gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 58938a18897..ca21a1a5f13 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19885,6 +19885,27 @@ view your Denote directory.") Denote with Org mode.") (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 (package (name "emacs-denote-explore")