diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-08 09:37:16 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:24:20 +0100 |
| commit | 340b82f4a8e86d2b4b0e1468ec1e0190f7ca3cce (patch) | |
| tree | 0d97cff4f1ac29994963064de20574615f30e55f /gnu | |
| parent | d21acaccfc0ea99595448ea7696c17c9787dc100 (diff) | |
gnu: Add emacs-vulpea.
* gnu/packages/emacs-xyz.scm (emacs-vulpea): New variable.
Change-Id: Ie65dba7f5061d489d52f0bbd82701c9be36ffe1f
Reviewed-by: Cayetano Santos <csantosb@inventati.org>
Change-Id: I701b4dffbf6c23260d18dac6bf6de14a13e2e5eb
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 4cd8751b55..3c8b538e55 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -46426,6 +46426,52 @@ be useful when working with the bitbake files in Yocto and OpenEmbedded projects.") (license license:gpl3+))) +(define-public emacs-vulpea + (package + (name "emacs-vulpea") + (version "2.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/d12frosted/vulpea") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "166brn15x3l59mbvl6lb5136fdyfr4zbmb4k9v5ii35ikcw29b3f")))) + (build-system emacs-build-system) + (arguments + (list + #:emacs emacs-no-x ; for sqlite support. + ;; Taken from Makefile, add --disable-dependencies. + #:test-command + #~(list "eldev" "--disable-dependencies" "-C" "-p" "-dtT" "test") + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'pre-check + (lambda _ + (setenv "EMACSLOADPATH" + (string-append + (getcwd) "/test:" + (getenv "EMACSLOADPATH")))))))) + (propagated-inputs (list emacs-emacsql emacs-s emacs-dash)) + (native-inputs (list emacs-buttercup emacs-eldev)) + (home-page "https://github.com/d12frosted/vulpea") + (synopsis "Note management library for Org mode") + (description + "Vulpea is a note management library for Org mode that maintains its own +SQLite database for efficient querying and organization. Key features: +@itemize +@item Fast note lookup via SQLite database with automatic sync +@item Rich note structure: titles,aliases, tags, links, properties, metadata +@item Flexible querying by tags, links,properties, dates, and more +@item Metadata system using Org description lists +@item Note creation with customizable templates +@item Selection interface with filtering and alias expansion +@end itemize +See @url{https://github.com/d12frosted/vulpea} for documentation.") + (license license:gpl3+))) + (define-public emacs-vunit-mode (let ((commit "b26ecc46464a57eb00bf62b15c0d717774ec804e") (revision "0")) |
