diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-09-18 20:19:45 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-09-20 23:22:25 +0200 |
commit | 5714c0a061059bd34a324a65ed96ada232ab9d3b (patch) | |
tree | 2a6571d1929edd25d58ab9c615305e24fad63669 /gnu/packages | |
parent | e9d903f146865db5948abd271a5c7e763681b4e9 (diff) | |
download | guix-5714c0a061059bd34a324a65ed96ada232ab9d3b.tar guix-5714c0a061059bd34a324a65ed96ada232ab9d3b.tar.gz |
gnu: Add emacs-org-node.
* gnu/packages/emacs-xyz.scm (emacs-org-node): New variable.
Change-Id: I394f51d7f6c0e983658e689c8f1bd9e24847e09a
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9138fefa6d..b811cc8bc5 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -38105,6 +38105,33 @@ as a plug-and-play solution for anyone already using Org mode for their personal wiki.") (license license:gpl3+)))) +(define-public emacs-org-node + (package + (name "emacs-org-node") + (version "0.8.6") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/meedstrom/org-node.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1binkkx86byw56zlignddrw7n0y0civ09wlch4yvxk9asdazkc0c")))) + (build-system emacs-build-system) + (propagated-inputs + (list emacs-dash + emacs-org + emacs-persist + emacs-transient + )) + (home-page "https://github.com/meedstrom/org-node") + (synopsis "Non-hierarchical note-taking with Org-mode, faster than +org-roam") + (description "This package provides a notetaking system like Roam, +using org mode; faster than org-roam.") + (license license:gpl3+))) + (define-public emacs-org-roam-bibtex (package (name "emacs-org-roam-bibtex") |