guix-commits
[Top][All Lists]
Advanced

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

03/07: gnu: Add emacs-focus.


From: guix-commits
Subject: 03/07: gnu: Add emacs-focus.
Date: Thu, 18 Jul 2019 09:37:07 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit a513a4cd1748e64f7ecbde6d9d98b4ffac423bf3
Author: Brian Leung <address@hidden>
Date:   Sun Jul 14 04:25:27 2019 +0200

    gnu: Add emacs-focus.
    
    * gnu/packages/emacs-xyz.scm (emacs-focus): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index ef86197..c48d320 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -13745,6 +13745,30 @@ accept and reject GitHub pull requests.")
 searches with @code{ripgrep}.")
       (license license:gpl3+))))
 
+(define-public emacs-focus
+  (let ((commit "ab42b8779929beeb7878c7fb3d3ccd80d9327c7f")
+        (version "0.1.1")
+        (revision "1"))
+    (package
+      (name "emacs-focus")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/larstvei/Focus";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "079v1syid7h2vr2ya6hs6hl0pgj60qdsw60mqw4cj2zllmkrkwj4"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/larstvei/Focus";)
+      (synopsis "Minor mode for focusing in on relevant text")
+      (description "This package provides a minor mode that dims the color of
+text in neighboring sections.")
+      (license license:gpl3+))))
+
 (define-public emacs-org-brain
   (package
     (name "emacs-org-brain")



reply via email to

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