guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/08: gnu: Add emacs-window-layout.


From: guix-commits
Subject: 03/08: gnu: Add emacs-window-layout.
Date: Thu, 17 Jan 2019 06:21:07 -0500 (EST)

ambrevar pushed a commit to branch master
in repository guix.

commit 9830f1a249b8f7be59c238854c00763a3ea428b1
Author: Pierre Neidhardt <address@hidden>
Date:   Thu Jan 17 12:08:37 2019 +0100

    gnu: Add emacs-window-layout.
    
    * gnu/packages/emacs-xyz.scm (emacs-window-layout): New variable.
---
 gnu/packages/emacs-xyz.scm | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index caedf6a..a92a26a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34,7 +34,7 @@
 ;;; Copyright © 2017, 2018 Maxim Cournoyer <address@hidden>
 ;;; Copyright © 2018 Sohom Bhattacharjee <address@hidden>
 ;;; Copyright © 2018 Mathieu Lirzin <address@hidden>
-;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
+;;; Copyright © 2018, 2019 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2018, 2019 Tim Gesthuizen <address@hidden>
 ;;; Copyright © 2018 Jack Hill <address@hidden>
 ;;; Copyright © 2018 Pierre-Antoine Rouby <address@hidden>
@@ -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+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]