guix-commits
[Top][All Lists]
Advanced

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

01/11: gnu: Add emacs-fullframe.


From: guix-commits
Subject: 01/11: gnu: Add emacs-fullframe.
Date: Sun, 8 Dec 2019 01:23:12 -0500 (EST)

leungbk pushed a commit to branch master
in repository guix.

commit ab9feebb31c85bc7e34a3dbc07c2796ff9ddae3d
Author: Brian Leung <brian@debian>
Date:   Tue Dec 3 17:23:37 2019 -0800

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index cab19e9..6e158c3 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -20178,3 +20178,25 @@ top-level header, start the minor mode with 
@code{org-present}, and page through
 each slide with left/right keys.")
       (home-page "https://github.com/rlister/org-present";)
       (license license:gpl2))))
+
+(define-public emacs-fullframe
+  (package
+    (name "emacs-fullframe")
+    (version "0.5.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tomterl/fullframe.git";)
+             (commit version)))
+       (sha256
+        (base32
+         "0m43qnhp6ibsskpjkxc86p3lrjsjc0ndqml3lbd65s79x4x7i3fi"))
+       (file-name (git-file-name name version))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/tomterl/fullframe";)
+    (synopsis "Generalized automatic execution in a single frame")
+    (description "This library provides helpers for single-window-per-frame
+execution of buffer-exposing commands.")
+    (license license:gpl3+)))
+



reply via email to

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