[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-persp-mode.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-persp-mode. |
Date: |
Sat, 22 Feb 2020 13:54:33 -0500 |
This is an automated email from the git hooks/post-receive script.
leungbk pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5508d9a gnu: Add emacs-persp-mode.
5508d9a is described below
commit 5508d9a8d7b29ac9a1398ba5a0423523477803b4
Author: Brian Leung <address@hidden>
AuthorDate: Thu Feb 20 17:05:25 2020 -0800
gnu: Add emacs-persp-mode.
* gnu/packages/emacs-xyz.scm (emacs-persp-mode): New variable.
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3a026be..1247c01 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5259,6 +5259,28 @@ perspective only its buffers are available by default.")
;; the Expat license.
(license license:gpl3+)))
+(define-public emacs-persp-mode
+ (package
+ (name "emacs-persp-mode")
+ (version "2.9.8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Bad-ptr/persp-mode.el.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0b4y7a6j70s9lvr37riyy9k5kh3yvmx0m6nd9c0c8572ji4ij65g"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/Bad-ptr/persp-mode.el")
+ (synopsis "Switch between named \"perspectives\" shared among frames")
+ (description
+ "This package extends @code{perspective.el} to enable perspectives that
+can be saved to and restored from a file.")
+ (license license:gpl2+)))
+
(define-public emacs-test-simple
(package
(name "emacs-test-simple")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-persp-mode.,
guix-commits <=