summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@nova.friendly-machines.com>2025-05-31 23:34:36 +0200
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-06-01 00:06:19 +0200
commitfd1d786e4574854093f31f52a7898560a609304a (patch)
tree6f77f180fafc19f22f80a2f0000d327bfc7d14bd /gnu
parentddc10a65fecac43582ad21a9a1e7e672878e0a38 (diff)
gnu: Add emacs-org-node@3.4.1.
* gnu/packages/emacs-xyz.scm (emacs-org-node-3): New variable. Change-Id: I8f1a031cd23304ff9a9eb69eb8878b20fd08d946
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm45
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2d8a855a02f..1c354a38fff 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -40727,6 +40727,51 @@ using org mode; faster than org-roam.")
40727structure of all your Org files – headings, links and so on..") 40727structure of all your Org files – headings, links and so on..")
40728 (home-page "https://github.com/meedstrom/org-node/") 40728 (home-page "https://github.com/meedstrom/org-node/")
40729 (license license:gpl3+))) 40729 (license license:gpl3+)))
40730
40731(define-public emacs-org-node-3
40732 (package
40733 (name "emacs-org-node")
40734 (version "3.4.1")
40735 (source (origin
40736 (method git-fetch)
40737 (uri (git-reference
40738 (url "https://github.com/meedstrom/org-node/")
40739 (commit version)))
40740 (file-name (git-file-name name version))
40741 (sha256
40742 (base32
40743 "05sqrf96fs9yx9fw7mwl6y2376rwxk97jd4zdh74f9w56hkf5y6p"))))
40744 (build-system emacs-build-system)
40745 (arguments
40746 '(#:tests? #f ; fails
40747 #:test-command '("./makem.sh" "tests")
40748 #:phases
40749 (modify-phases %standard-phases
40750 (add-after 'unpack 'dont-git
40751 (lambda _
40752 (substitute* "makem.sh"
40753 (("^cd.*\"")
40754 "")))))))
40755 (propagated-inputs
40756 (list emacs-llama
40757 emacs-magit
40758 emacs-org-mem-0.14))
40759 ;; tests
40760 (native-inputs
40761 (list emacs-buttercup
40762 emacs-dash
40763 util-linux
40764 grep
40765 sed))
40766 (home-page "https://github.com/meedstrom/org-node/")
40767 (synopsis "Non-hierarchical note-taking with Org-mode, faster than
40768org-roam")
40769 (description "This package provides a notetaking system like Roam,
40770using org mode; faster than org-roam. This version of org-node has
40771different configuration options to org-node 2 so you DO have to set
40772it up again.")
40773 (license license:gpl3+)))
40774
40730(define-public emacs-org-super-links 40775(define-public emacs-org-super-links
40731 (package 40776 (package
40732 (name "emacs-org-super-links") 40777 (name "emacs-org-super-links")