diff options
author | Brian Leung <leungbk@mailfence.com> | 2020-02-20 17:05:25 -0800 |
---|---|---|
committer | Brian Leung <leungbk@mailfence.com> | 2020-02-22 10:53:49 -0800 |
commit | 5508d9a8d7b29ac9a1398ba5a0423523477803b4 (patch) | |
tree | 0fbc69f7d180dd448f720ee9ab07e9d8a38d08cd | |
parent | 7dc0f1d5a8c248addfcaadf76e45bf601bc51411 (diff) | |
download | patches-5508d9a8d7b29ac9a1398ba5a0423523477803b4.tar patches-5508d9a8d7b29ac9a1398ba5a0423523477803b4.tar.gz |
gnu: Add emacs-persp-mode.
* gnu/packages/emacs-xyz.scm (emacs-persp-mode): New variable.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3a026bec9a..1247c01e63 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") |