mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add emacs-tmsu.
* gnu/packages/emacs-xyz.scm (emacs-tmsu): New variable. Closes guix/guix#5187 Change-Id: Ie9f8a811f53ced5471bd92f784d6e32cde6d890d Modified-by: Cayetano Santos <csantosb@inventati.org> Signed-off-by: Cayetano Santos <csantosb@inventati.org>
This commit is contained in:
parent
63e2092793
commit
002337a36b
1 changed files with 45 additions and 0 deletions
|
|
@ -215,6 +215,7 @@
|
|||
#:use-module (gnu packages emacs)
|
||||
#:use-module (gnu packages emacs-build)
|
||||
#:use-module (gnu packages enchant)
|
||||
#:use-module (gnu packages file-systems)
|
||||
#:use-module (gnu packages fonts)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages games)
|
||||
|
|
@ -21682,6 +21683,50 @@ using a convenient notation.")
|
|||
(license (list license:gpl3+
|
||||
license:fdl1.3+)))) ;GFDLv1.3+ for the manual
|
||||
|
||||
(define-public emacs-tmsu
|
||||
;; There are no releases or tags upstream.
|
||||
(let ((commit "c75ae9bed8f3bb2229e873fcc85fe62701e47974")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-tmsu")
|
||||
(version (git-version "0.9" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vifon/tmsu.el")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0mxz9bmdcdxkj7f4ih405i4vpd35c72xgs1i8cbi0132dpnnblpz"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-exec-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((tmsu (search-input-file inputs "bin/tmsu")))
|
||||
(substitute* (list "tmsu.el" "tmsu-dired.el")
|
||||
(("\"tmsu\"")
|
||||
(string-append "\"" tmsu "\"")))))))
|
||||
#:test-command
|
||||
#~(list "emacs"
|
||||
"-batch"
|
||||
"-l"
|
||||
"tmsu-tests.el"
|
||||
"-f"
|
||||
"ert-run-tests-batch-and-exit")))
|
||||
(inputs (list tmsu))
|
||||
(synopsis "Emacs interface to the @code{tmsu} file tagging tool")
|
||||
(description
|
||||
"@code{tmsu.el} focuses on enhancing the @acronym{UX, User Experience}
|
||||
of the most common @code{tmsu} operations: tag editing and querying. It's
|
||||
primarily intended to be used from dired, though @code{tmsu-edit} can be used
|
||||
separately from it.")
|
||||
(home-page "https://github.com/vifon/tmsu.el")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-beframe
|
||||
(let ((commit "c3f4583b0767e7f8c38c83ed29af40af8ba3bdfa")) ;version bump
|
||||
(package
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue