me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-undo-fu-session.

* gnu/packages/emacs-xyz.scm (emacs-undo-fu-session): New variable.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
master
Niklas Eklund 2020-11-22 14:15:57 +01:00 committed by Arun Isaac
parent b27b0e13b6
commit c758433302
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 34 additions and 0 deletions

View File

@ -3074,6 +3074,40 @@ adding convenient undo/redo without losing access to the full undo history,
allowing you to visit all previous states of the document if you need.") allowing you to visit all previous states of the document if you need.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-undo-fu-session
;; There are no tagged releases upstream on gitlab, instead we are using the
;; most recent commit.
(let ((commit "56cdd3538a058c6916bdf2d9010c2179f2505829")
(revision "0"))
(package
(name "emacs-undo-fu-session")
(version (git-version "0.2" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/ideasman42/emacs-undo-fu-session")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "04wq1alrzzlidcb4mjb5j7pg68pks1vgv7kvvmi6dzb3l602mb2a"))))
(build-system emacs-build-system)
(arguments
`(#:tests? #t
#:test-command '("emacs" "--batch" "-l" "undo-fu-session.el"
"-l" "undo-fu-session-test.el")
#:phases
(modify-phases %standard-phases
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp")
#t)))))
(home-page "https://gitlab.com/ideasman42/emacs-undo-fu-session")
(synopsis "Save & recover undo steps between Emacs sessions")
(description "This package writes undo/redo information upon file save
which is restored where possible when the file is loaded again.")
(license license:gpl3+))))
(define-public emacs-s (define-public emacs-s
(package (package
(name "emacs-s") (name "emacs-s")