gnu: Add emacs-switch-window.

* gnu/packages/emacs.scm (emacs-switch-window): New variable.
This commit is contained in:
Feng Shu 2017-06-17 15:58:05 +08:00 committed by Jan Nieuwenhuizen
parent e3ddb1e832
commit 58addd2b20
No known key found for this signature in database
GPG key ID: A12F87978D701B99

View file

@ -4635,6 +4635,27 @@ (define-public emacs-exwm
built on top of XELB.")
(license license:gpl3+)))
(define-public emacs-switch-window
(package
(name "emacs-switch-window")
(version "1.5.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://github.com/dimitri/switch-window/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0xyxqrw71krdnj3sdm4x05zw7n40h075s262jih75vmrix95sjlj"))))
(build-system emacs-build-system)
(home-page "https://github.com/dimitri/switch-window")
(synopsis "Emacs window switch tool")
(description "Switch-window is an emacs window switch tool, which
offer a visual way to choose a window to switch to, delete, split or
other operations.")
(license license:wtfpl2)))
(define-public emacs-gnuplot
(package
(name "emacs-gnuplot")