diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index caedf6a0de..a92a26a885 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -34,7 +34,7 @@ ;;; Copyright © 2017, 2018 Maxim Cournoyer ;;; Copyright © 2018 Sohom Bhattacharjee ;;; Copyright © 2018 Mathieu Lirzin -;;; Copyright © 2018 Pierre Neidhardt +;;; Copyright © 2018, 2019 Pierre Neidhardt ;;; Copyright © 2018, 2019 Tim Gesthuizen ;;; Copyright © 2018 Jack Hill ;;; Copyright © 2018 Pierre-Antoine Rouby @@ -12678,3 +12678,23 @@ leader key in vim), and much more.") from within emacs. The @code{tldr} pages are a community effort to simplify the man pages with practical examples.") (license license:wtfpl2)))) + +(define-public emacs-window-layout + (package + (name "emacs-window-layout") + (version "1.4") + (home-page "https://github.com/kiwanami/emacs-window-layout") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (sha256 + (base32 + "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (synopsis "Simple window layout management framework for emacs") + (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+)))