diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-01-17 12:18:29 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2019-01-17 12:20:54 +0100 |
commit | 5544a07fb52e0e92b5d0616ff1953d522dad1f0a (patch) | |
tree | 6f98b14e7d588c4d6956301c143e4ad6ab954974 /gnu | |
parent | 9830f1a249b8f7be59c238854c00763a3ea428b1 (diff) | |
download | patches-5544a07fb52e0e92b5d0616ff1953d522dad1f0a.tar patches-5544a07fb52e0e92b5d0616ff1953d522dad1f0a.tar.gz |
gnu: Add emacs-e2wm.
* gnu/packages/emacs-xyz.scm (emacs-e2wm): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a92a26a885..ad64f2a0b6 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -12698,3 +12698,27 @@ the man pages with practical examples.") (description "A window-layout management library that can split a frame or a window into some windows according to a layout recipe.") (license license:gpl3+))) + +(define-public emacs-e2wm + (package + (name "emacs-e2wm") + (version "1.4") + (home-page "https://github.com/kiwanami/emacs-window-manager") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (sha256 + (base32 + "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-window-layout" ,emacs-window-layout))) + (synopsis "Equilibrium Emacs Window Manager") + (description "E2WM is a window manager for Emacs. It enables to +customize the place of pop-up window, how the windows are split, how the +buffers are located in the windows, keybinds to manipulate windows and +buffers, etc. It also has plug-ins to help your Emacs life.") + (license license:gpl3+))) |