~whereiseveryone/guixrus

fd7152611504e66307079253a6ad1718b6b35cba — Charanjit Singh 3 months ago 74e43e5
add emacs-notes-migrator
1 files changed, 22 insertions(+), 0 deletions(-)

M guixrus/packages/emacs.scm
M guixrus/packages/emacs.scm => guixrus/packages/emacs.scm +22 -0
@@ 2593,3 2593,25 @@ removes distracting UI elements.")
     "This package provides integration with @command{zoxide}
for Emacs.")
    (license license:gpl3+)))

(define-public emacs-notes-migrator
  (package
   (name "emacs-notes-migrator")
   (version "v0.1.0")
   (source (origin
            (method git-fetch)
            (uri (git-reference
                  (url "https://github.com/bitspook/notes-migrator")
                  (commit version)))
            (file-name (git-file-name name version))
            (sha256
             (base32
              "1qzymgr3i7h24f926k0ljfg5wnhc5lic6lyssqw1ss4dlxkkpgbv"))))
   (build-system emacs-build-system)
   (propagated-inputs
    (list emacs-denote emacs-org-roam))
   (home-page "https://github.com/bitspook/notes-migrator")
   (synopsis "Migrate your notes b/w different note-taking software")
   (description
    "Migrate your notes b/w different note-taking software")
   (license license:none)))