[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: Add emacs-undo-tree.
From: |
Ludovic Courtès |
Subject: |
08/08: gnu: Add emacs-undo-tree. |
Date: |
Mon, 04 Jan 2016 23:29:03 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 1075b43737825e3eea24e31ad02142c45747d4bb
Author: Dmitry Bogatov <address@hidden>
Date: Wed Dec 30 21:06:49 2015 +0300
gnu: Add emacs-undo-tree.
* gnu/packages/emacs.scm (emacs-undo-tree): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/emacs.scm | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1529f6a..e82ffd3 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1013,6 +1013,27 @@ and stored in memory.")
(description "This package provides a modern list API library for Emacs.")
(license license:gpl3+)))
+(define-public emacs-undo-tree
+ (package
+ (name "emacs-undo-tree")
+ (version "0.6.4")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "http://dr-qubit.org/git/undo-tree.git")
+ (commit "release/0.6.4")))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "0b6hnv6bq1g5np5q2yw9r9aj1cxpp14akm21br7vpb7wp01fv4b3"))))
+ (build-system emacs-build-system)
+ (home-page "http://www.dr-qubit.org/emacs.php")
+ (synopsis "Treat undo history as a tree")
+ (description "Tree-like interface to Emacs undo system, providing
+graphical tree presentation of all previous states of buffer that
+allows easily move between them.")
+ (license license:gpl3+)))
+
(define-public emacs-s
(package
(name "emacs-s")
- branch master updated (4828ff9 -> 1075b43), Ludovic Courtès, 2016/01/04
- 02/08: ui: Update copyright year in '--version' output., Ludovic Courtès, 2016/01/04
- 04/08: services: boot: Reinstate /tmp and /var/run deletion., Ludovic Courtès, 2016/01/04
- 03/08: guix package: Allow multiple '--search' flags., Ludovic Courtès, 2016/01/04
- 01/08: git-download: Correctly implement recursive checkouts., Ludovic Courtès, 2016/01/04
- 05/08: services: Move /tmp cleanup to a separate service., Ludovic Courtès, 2016/01/04
- 06/08: linux-boot: Remove verbose output for module loads., Ludovic Courtès, 2016/01/04
- 07/08: gnu: emacs: Remove 'info.info'., Ludovic Courtès, 2016/01/04
- 08/08: gnu: Add emacs-undo-tree.,
Ludovic Courtès <=